View Javadoc
1 package org.neuclear.commons.crypto.passphraseagents.swing.actions; 2 3 import org.neuclear.commons.crypto.signers.BrowsableSigner; 4 5 import javax.swing.*; 6 7 /* 8 * The NeuClear Project and it's libraries are 9 * (c) 2002-2004 Antilles Software Ventures SA 10 * For more information see: http://neuclear.org 11 * 12 * This library is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU Lesser General Public 14 * License as published by the Free Software Foundation; either 15 * version 2.1 of the License, or (at your option) any later version. 16 * 17 * This library is distributed in the hope that it will be useful, 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 20 * Lesser General Public License for more details. 21 * 22 * You should have received a copy of the GNU Lesser General Public 23 * License along with this library; if not, write to the Free Software 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 */ 26 27 /*** 28 * User: pelleb 29 * Date: May 6, 2004 30 * Time: 10:16:52 AM 31 */ 32 public abstract class SignerAction extends NeuClearAction { 33 public SignerAction(String name, Icon icon, BrowsableSigner signer) { 34 super(name, icon); 35 this.signer = signer; 36 } 37 38 protected final BrowsableSigner signer; 39 }

This page was automatically generated by Maven