Package jimm.datavision.gui.cmd

Examples of jimm.datavision.gui.cmd.CompoundCommand


public EditWin(Designer designer, String title, String commandNameKey,
         boolean modal)
{
    super(designer.getFrame(), title, modal);
    this.designer = designer;
    commands = new CompoundCommand(I18N.get(commandNameKey));
}
View Full Code Here


*
* @see #doRevert
*/
protected void revert() {
    commands.undo();
    commands = new CompoundCommand(commands.getName());
    doRevert();
}
View Full Code Here

TOP

Related Classes of jimm.datavision.gui.cmd.CompoundCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.