[Ejtools-cvs] libraries/adwt/src/main/org/ejtools/adwt/action/file ExitAction.java,1.9,1.10 FileHist
Brought to you by:
letiemble
|
From: <let...@us...> - 2003-12-14 10:50:03
|
Update of /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file
In directory sc8-pr-cvs1:/tmp/cvs-serv19233/adwt/src/main/org/ejtools/adwt/action/file
Modified Files:
ExitAction.java FileHistoryAction.java
FileHistoryActionTop.java NewAction.java OpenAction.java
OpenWorkspaceAction.java PrintAction.java SaveAction.java
SaveAsAction.java SaveAsWorkspaceAction.java
SaveWorkspaceAction.java
Log Message:
Add more javadocs.
Add package.html files.
Index: ExitAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/ExitAction.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ExitAction.java 15 Sep 2003 22:37:13 -0000 1.9
--- ExitAction.java 13 Dec 2003 21:29:34 -0000 1.10
***************
*** 22,26 ****
public class ExitAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 22,26 ----
public class ExitAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: FileHistoryAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/FileHistoryAction.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** FileHistoryAction.java 15 Sep 2003 22:37:13 -0000 1.7
--- FileHistoryAction.java 13 Dec 2003 21:29:34 -0000 1.8
***************
*** 21,25 ****
public class FileHistoryAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class FileHistoryAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: FileHistoryActionTop.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/FileHistoryActionTop.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** FileHistoryActionTop.java 15 Sep 2003 22:37:13 -0000 1.8
--- FileHistoryActionTop.java 13 Dec 2003 21:29:34 -0000 1.9
***************
*** 22,26 ****
public class FileHistoryActionTop extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 22,26 ----
public class FileHistoryActionTop extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: NewAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/NewAction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** NewAction.java 15 Sep 2003 22:37:13 -0000 1.8
--- NewAction.java 13 Dec 2003 21:29:34 -0000 1.9
***************
*** 21,25 ****
public class NewAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class NewAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: OpenAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/OpenAction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** OpenAction.java 15 Sep 2003 22:37:13 -0000 1.8
--- OpenAction.java 13 Dec 2003 21:29:34 -0000 1.9
***************
*** 21,25 ****
public class OpenAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class OpenAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: OpenWorkspaceAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/OpenWorkspaceAction.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** OpenWorkspaceAction.java 27 Nov 2003 00:51:44 -0000 1.1
--- OpenWorkspaceAction.java 13 Dec 2003 21:29:34 -0000 1.2
***************
*** 1,41 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class OpenWorkspaceAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public OpenWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.open.workspace");
! this.setMenu("action.file");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Open16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Open24.gif");
! }
! }
!
--- 1,41 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class OpenWorkspaceAction extends CommandAction
! {
! /** Resource Bundle */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public OpenWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.open.workspace");
! this.setMenu("action.file");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Open16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Open24.gif");
! }
! }
!
Index: PrintAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/PrintAction.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** PrintAction.java 15 Sep 2003 22:37:13 -0000 1.7
--- PrintAction.java 13 Dec 2003 21:29:34 -0000 1.8
***************
*** 21,25 ****
public class PrintAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class PrintAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: SaveAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveAction.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** SaveAction.java 15 Sep 2003 22:37:13 -0000 1.8
--- SaveAction.java 13 Dec 2003 21:29:34 -0000 1.9
***************
*** 21,25 ****
public class SaveAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class SaveAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: SaveAsAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveAsAction.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SaveAsAction.java 15 Sep 2003 22:37:13 -0000 1.7
--- SaveAsAction.java 13 Dec 2003 21:29:34 -0000 1.8
***************
*** 21,25 ****
public class SaveAsAction extends CommandAction
{
! /** Description of the Field */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
--- 21,25 ----
public class SaveAsAction extends CommandAction
{
! /** Resource Bundle */
private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
Index: SaveAsWorkspaceAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveAsWorkspaceAction.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SaveAsWorkspaceAction.java 27 Nov 2003 00:51:44 -0000 1.1
--- SaveAsWorkspaceAction.java 13 Dec 2003 21:29:34 -0000 1.2
***************
*** 1,38 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class SaveAsWorkspaceAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public SaveAsWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.save.workspace.as");
! this.setMenu("action.file");
! }
! }
!
--- 1,38 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author Laurent Etiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class SaveAsWorkspaceAction extends CommandAction
! {
! /** Resource Bundle */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public SaveAsWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.save.workspace.as");
! this.setMenu("action.file");
! }
! }
!
Index: SaveWorkspaceAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/adwt/src/main/org/ejtools/adwt/action/file/SaveWorkspaceAction.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SaveWorkspaceAction.java 27 Nov 2003 00:51:44 -0000 1.1
--- SaveWorkspaceAction.java 13 Dec 2003 21:29:34 -0000 1.2
***************
*** 1,41 ****
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author letiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class SaveWorkspaceAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public SaveWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.save.workspace");
! this.setMenu("action.file");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Save16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Save24.gif");
! }
! }
!
--- 1,41 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.adwt.action.file;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author Laurent Etiemble
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class SaveWorkspaceAction extends CommandAction
! {
! /** Resource Bundle */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.adwt.action.Resources");
!
!
! /**
! * Constructor for the CopyAction object
! *
! * @param command Description of Parameter
! */
! public SaveWorkspaceAction(Command command)
! {
! super(command, resources, "action.file.save.workspace");
! this.setMenu("action.file");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Save16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Save24.gif");
! }
! }
!
|