// File: ActionRemoveSEdge // Classes: ActionRemoveSEdge // Author: Kedar Patankar // Last modified : 22 Oct 1997 package edu.neu.ccs.demeter.tools.apstudio.graphedit; public class ActionRemoveSEdge extends Action { public ActionRemoveSEdge(Editor e) { super(e); } public String name() { return new String(" Remove strategy edge" ); } public void doIt() { _editor.removeStrategyEdge(); } public void undoIt() { } }