Search in sources :

Example 1 with OpenFileCommand

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();
}
Also used : OpenFileCommand(org.pentaho.mantle.client.commands.OpenFileCommand) Bindable(org.pentaho.ui.xul.stereotype.Bindable)

Example 2 with OpenFileCommand

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();
}
Also used : OpenFileCommand(org.pentaho.mantle.client.commands.OpenFileCommand) Bindable(org.pentaho.ui.xul.stereotype.Bindable)

Example 3 with OpenFileCommand

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();
}
Also used : OpenFileCommand(org.pentaho.mantle.client.commands.OpenFileCommand) Bindable(org.pentaho.ui.xul.stereotype.Bindable)

Example 4 with OpenFileCommand

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();
}
Also used : OpenFileCommand(org.pentaho.mantle.client.commands.OpenFileCommand) Bindable(org.pentaho.ui.xul.stereotype.Bindable)

Aggregations

OpenFileCommand (org.pentaho.mantle.client.commands.OpenFileCommand)4 Bindable (org.pentaho.ui.xul.stereotype.Bindable)4