Update of /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/action
In directory sc8-pr-cvs1:/tmp/cvs-serv17417/graph/src/main/org/ejtools/graph/action
Modified Files:
ExportAsImageAction.java ExportAsTextAction.java
Log Message:
Adjust some Javadoc.
Index: ExportAsImageAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/action/ExportAsImageAction.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExportAsImageAction.java 15 Sep 2003 22:02:49 -0000 1.1
--- ExportAsImageAction.java 15 Sep 2003 22:11:22 -0000 1.2
***************
*** 16,22 ****
* Description of the Class
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
* @version $Revision$
- * @created 29 d?cembre 2001
* @todo Javadoc to complete
*/
--- 16,21 ----
* Description of the Class
*
! * @author Laurent Etiemble
* @version $Revision$
* @todo Javadoc to complete
*/
Index: ExportAsTextAction.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/graph/src/main/org/ejtools/graph/action/ExportAsTextAction.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExportAsTextAction.java 15 Sep 2003 22:02:49 -0000 1.1
--- ExportAsTextAction.java 15 Sep 2003 22:11:22 -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.graph.action;
!
! import java.util.ResourceBundle;
!
! import org.ejtools.adwt.action.Command;
! import org.ejtools.adwt.action.CommandAction;
!
! /**
! * Description of the Class
! *
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 29 d?cembre 2001
! * @version $Revision$
! * @todo Javadoc to complete
! */
! public class ExportAsTextAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.graph.GraphService");
!
!
! /**
! * Constructor for the NewAction object
! *
! * @param command Description of Parameter
! */
! public ExportAsTextAction(Command command)
! {
! super(command, resources, "action.tools.export.as.text");
! this.setMenu("action.tools");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Export16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Export24.gif");
! }
! }
--- 1,40 ----
! /*
! * EJTools, the Enterprise Java Tools
! *
! * Distributable under LGPL license.
! * See terms of license at www.gnu.org.
! */
! package org.ejtools.graph.action;
!
! 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 ExportAsTextAction extends CommandAction
! {
! /** Description of the Field */
! private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.graph.GraphService");
!
!
! /**
! * Constructor for the NewAction object
! *
! * @param command Description of Parameter
! */
! public ExportAsTextAction(Command command)
! {
! super(command, resources, "action.tools.export.as.text");
! this.setMenu("action.tools");
! this.setToolBar(true);
! this.setSmallIcon("/toolbarButtonGraphics/general/Export16.gif");
! this.setIcon("/toolbarButtonGraphics/general/Export24.gif");
! }
! }
|