use of org.pentaho.mantle.client.commands.SaveCommand in project pentaho-platform by pentaho.
the class MantleModel method executeSaveAsCommand.
@Bindable
public void executeSaveAsCommand() {
SaveCommand saveAsCommand = new SaveCommand(true);
saveAsCommand.execute();
}
use of org.pentaho.mantle.client.commands.SaveCommand in project pentaho-platform by pentaho.
the class MantleModel method executeSaveCommand.
@Bindable
public void executeSaveCommand() {
SaveCommand saveCommand = new SaveCommand();
saveCommand.execute();
}
Aggregations