| Author | djarvis <email> |
|---|---|
| Date | 2017-01-22 21:48:34 GMT-0800 |
| Commit | bbee897b70548b49766c08d84c5c3e789cd347ca |
| Parent | f9e4655 |
| final String script = getStartupScript(); | ||
| - System.out.println( "script = '" + script + "'" ); | ||
| - | ||
| final RScriptDialog dialog = new RScriptDialog( | ||
| getWindow(), "Dialog.rScript.title", script ); | ||
| private void putStartupScript( final String s ) { | ||
| try { | ||
| - System.out.println( "put startup script = '" + s + "'" ); | ||
| getPreferences().put( PERSIST_R_STARTUP, s ); | ||
| - getPreferences().sync(); | ||
| } catch( final Exception ex ) { | ||
| getNotifier().notify( ex ); | ||
| final String initScript = getInitScript(); | ||
| - System.out.println( "script = '" + initScript + "'" ); | ||
| if( !initScript.isEmpty() ) { |
| @Override | ||
| public void putSetting( final String key, final String value ) { | ||
| - System.out.println( "PUT: " + key + " = " + value ); | ||
| getSettings().clearProperty( key ); | ||
| getSettings().addProperty( key, value ); |
| Delta | 0 lines added, 6 lines removed, 6-line decrease |
|---|