// File: ActionShowContent.java // Classes: ActionShowContent // Original Author: kedar patankar // Date 21 Jan 1997 package uci.graphedit; import java.awt.Dialog; import gjt.DialogClient; /** Action to show the help topics */ public class ActionShowContent extends Action implements DialogClient { public ActionShowContent(Editor e) { super(e); } public String name() { return "Show Content dialog"; } public void doIt() { ContentDialog cd = new ContentDialog(_editor,this,"Help Topics"); cd.show(); } public void undoIt() { } public void dialogDismissed(Dialog d){ } } /* end class ActionShowContent */