// File: ActionShowContent.java // Classes: ActionShowContent // Author: Kedar Patankar package edu.neu.ccs.demeter.tools.apstudio.graphedit; import java.io.IOException; import java.io.File; /** Action to show the help topics */ public class ActionShowContent extends Action { public ActionShowContent(Editor e) { super(e); } public String name() { return "Show Content dialog"; } public void doIt() { String INSTALL_DIR=_editor.getInstallDir(); INSTALL_DIR = INSTALL_DIR + "/help/UserManual.html"; HelpFrame f=new HelpFrame("file:///"+INSTALL_DIR); f.setVisible(true); f.setSize(350,400); } public void undoIt() { } } /* end class ActionShowContent */