1 7 package org.ejtools.graph.action; 8 9 import java.util.ResourceBundle ; 10 11 import org.ejtools.adwt.action.Command; 12 import org.ejtools.adwt.action.CommandAction; 13 14 21 public class ExportAsTextAction extends CommandAction 22 { 23 24 private static ResourceBundle resources = ResourceBundle.getBundle("org.ejtools.graph.GraphService"); 25 26 27 32 public ExportAsTextAction(Command command) 33 { 34 super(command, resources, "action.tools.export.as.text"); 35 this.setMenu("action.tools"); 36 this.setToolBar(true); 37 this.setSmallIcon("/toolbarButtonGraphics/general/Export16.gif"); 38 this.setIcon("/toolbarButtonGraphics/general/Export24.gif"); 39 } 40 } 41 | Popular Tags |