// File: ActionShowAbout.java // Classes: ActionShowAbout // Original Author: kedar patankar // Date 21 Jan 1997 package uci.graphedit; import java.awt.Dialog; import gjt.DialogClient; public class ActionShowAbout extends Action implements DialogClient { public ActionShowAbout(Editor editor){super(editor);} public String name() { return "Show About dialog"; } public void doIt() { AboutDialog ad = new AboutDialog(_editor,this,"About Northeastern AP-Studio"); ad.show(); } public void undoIt() { } public void dialogDismissed(Dialog d){ } } /* end class ActionShowAbout */