// File: ActionResize.java // Classes: ActionResizeItem // Authors: Kevin Carlson and Dave Boatwright // Date 24 Feb 1997 package uci.graphedit; import gjt.DialogClient; import java.awt.*; /* Action to Resize the limits of the scrollbars */ public class ActionResizeItem extends Action implements DialogClient { private Editor _editor; public ActionResizeItem(Editor e) { super(e); _editor = e; } public String name() { return "Resize Window"; } public void doIt() { ResizeDialog _dialogBox = new ResizeDialog(_editor, "Resize Canvas Size", true, _editor); } public void undoIt() { } public void dialogDismissed(Dialog dl) { } } /* end class ActionResizeItem */