Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27810/src/java/org/neuclear/commons/crypto/passphraseagents Modified Files: ConsoleAgent.java GuiDialogAgent.java InteractiveAgent.java ServletPassPhraseAgent.java Log Message: added open dialog to swing agent and interactive agent Index: GuiDialogAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents/GuiDialogAgent.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** GuiDialogAgent.java 13 Apr 2004 17:32:06 -0000 1.10 --- GuiDialogAgent.java 13 Apr 2004 18:14:02 -0000 1.11 *************** *** 33,36 **** --- 33,39 ---- $Id$ $Log$ + Revision 1.11 2004/04/13 18:14:02 pelle + added open dialog to swing agent and interactive agent + Revision 1.10 2004/04/13 17:32:06 pelle Now has save dialog *************** *** 291,294 **** --- 294,301 ---- } + public File getOpenFileName(String title, String def) throws UserCancellationException { + return null; + } + private final TextField passphrase; private final Button ok; Index: ConsoleAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents/ConsoleAgent.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ConsoleAgent.java 13 Apr 2004 17:32:06 -0000 1.6 --- ConsoleAgent.java 13 Apr 2004 18:14:02 -0000 1.7 *************** *** 32,35 **** --- 32,38 ---- $Id$ $Log$ + Revision 1.7 2004/04/13 18:14:02 pelle + added open dialog to swing agent and interactive agent + Revision 1.6 2004/04/13 17:32:06 pelle Now has save dialog *************** *** 175,177 **** --- 178,184 ---- } + public File getOpenFileName(String title, String def) throws UserCancellationException { + return null; + } + } Index: InteractiveAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents/InteractiveAgent.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** InteractiveAgent.java 13 Apr 2004 17:32:06 -0000 1.6 --- InteractiveAgent.java 13 Apr 2004 18:14:02 -0000 1.7 *************** *** 26,29 **** --- 26,32 ---- $Id$ $Log$ + Revision 1.7 2004/04/13 18:14:02 pelle + added open dialog to swing agent and interactive agent + Revision 1.6 2004/04/13 17:32:06 pelle Now has save dialog *************** *** 80,82 **** --- 83,87 ---- File getSaveToFileName(String title, String def) throws UserCancellationException; + File getOpenFileName(String title, String def) throws UserCancellationException; + } Index: ServletPassPhraseAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/crypto/passphraseagents/ServletPassPhraseAgent.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ServletPassPhraseAgent.java 13 Apr 2004 17:32:06 -0000 1.7 --- ServletPassPhraseAgent.java 13 Apr 2004 18:14:02 -0000 1.8 *************** *** 80,82 **** --- 80,86 ---- return null; } + + public File getOpenFileName(String title, String def) throws UserCancellationException { + return null; + } } |