41424344454647
public EditWin(Designer designer, String title, String commandNameKey, boolean modal) { super(designer.getFrame(), title, modal); this.designer = designer; commands = new CompoundCommand(I18N.get(commandNameKey)); }
125126127128129130131132
* * @see #doRevert */ protected void revert() { commands.undo(); commands = new CompoundCommand(commands.getName()); doRevert(); }