// File: ActionNewSGraph // Classes: ActionNewSGraph // Author: Kedar Patankar package edu.neu.ccs.demeter.tools.apstudio.graphedit; public class ActionNewSGraph extends Action { public ActionNewSGraph(Editor e) { super(e); } public String name() { return new String(" Add strategy edge" ); } public void doIt() { _editor.addStrategyGraph(); } public void undoIt() { } }