use of org.pentaho.mantle.client.commands.OpenFileCommand in project pentaho-platform by pentaho.
the class MantleModel method executeScheduleContent.
@Bindable
public void executeScheduleContent() {
OpenFileCommand cmd = new OpenFileCommand(COMMAND.SCHEDULE_NEW);
cmd.execute();
}
use of org.pentaho.mantle.client.commands.OpenFileCommand in project pentaho-platform by pentaho.
the class MantleModel method executeEditContent.
@Bindable
public void executeEditContent() {
OpenFileCommand cmd = new OpenFileCommand(COMMAND.EDIT);
cmd.execute();
}
use of org.pentaho.mantle.client.commands.OpenFileCommand in project pentaho-platform by pentaho.
the class MantleModel method executeShareContent.
@Bindable
public void executeShareContent() {
OpenFileCommand cmd = new OpenFileCommand(COMMAND.SHARE);
cmd.execute();
}
use of org.pentaho.mantle.client.commands.OpenFileCommand in project pentaho-platform by pentaho.
the class MantleModel method executeOpenFileCommand.
@Bindable
public void executeOpenFileCommand() {
OpenFileCommand openFileCommand = new OpenFileCommand();
openFileCommand.execute();
}
Aggregations