// File: ActionShowAbout.java
// Classes: ActionShowAbout
// Author: Kedar Patankar

package EDU.neu.ccs.demeter.tools.apstudio.graphedit;

public class ActionShowAbout extends Action
{

  public ActionShowAbout(Editor editor){super(editor);}
  

  public String name() { return "Show About dialog"; }

  public void doIt()
  {
	  AboutDialog ad = new AboutDialog(_editor,"About AP-Studio..");
	  ad.setVisible(true);
  }

  public void undoIt() { }

} /* end class ActionShowAbout */

