public void setNoOfDec(int aNoOfDec) { Command command = new SetCommand( Manager.getSingleton().getTransaction(), this, "noOfDec", new Integer(noOfDec), new Integer(aNoOfDec)); command.execute(); }
public void setLength(int aLength) { Command command = new SetCommand( Manager.getSingleton().getTransaction(), this, "length", new Integer(length), new Integer(aLength)); command.execute(); }
public void detach(AppModel anAppModel) { Command command = new DetachCommand( Manager.getSingleton().getTransaction(), anAppModel, this, (anAppModel == null) ? null : anAppModel.getTypes(), "types", "appModel"); command.execute(); }
public void remove(ItemModel anItemModel) { Command command = new RemoveCommand( Manager.getSingleton().getTransaction(), this, anItemModel, items, "items", "typeModel"); command.execute(); }
public void setDbmsType(String aBaseType) { Command command = new SetCommand( Manager.getSingleton().getTransaction(), this, "dbmsType", dbmsType, aBaseType); command.execute(); }
public void moveItemDown(int ix) { Command command = new DownCommand(Manager.getSingleton().getTransaction(), this, items, "items", ix); command.execute(); }