163164165166167168169170
saveAsCommand.execute(); } @Bindable public void executeEditContent() { OpenFileCommand cmd = new OpenFileCommand( COMMAND.EDIT ); cmd.execute(); }
169170171172173174175176
cmd.execute(); } @Bindable public void executeShareContent() { OpenFileCommand cmd = new OpenFileCommand( COMMAND.SHARE ); cmd.execute(); }
175176177178179180181182
cmd.execute(); } @Bindable public void executeScheduleContent() { OpenFileCommand cmd = new OpenFileCommand( COMMAND.SCHEDULE_NEW ); cmd.execute(); }
312313314315316317318319
this.firePropertyChange( "newAnalysisEnabled", prevVal, newAnalysisEnabled ); } @Bindable public void executeOpenFileCommand() { OpenFileCommand openFileCommand = new OpenFileCommand(); openFileCommand.execute(); }