Examples of toPrefs()


Examples of de.sciss.eisenkraut.io.AudioBoxConfig.toPrefs()

    final int idx;
    final AudioBoxConfig newCfg;
   
    idx = collAudioBoxConfigs.indexOf( cfg );
    newCfg = cfg.changeActive( newActive );
    newCfg.toPrefs( abPrefs.node( newCfg.id ));
    collAudioBoxConfigs.set( idx, newCfg );
  }
 
//  // XXX chanNums are my guesses, should be checked, list should be extended
//  private static final Object[] kAudioBoxSizes = {
View Full Code Here

Examples of de.sciss.eisenkraut.io.AudioBoxConfig.toPrefs()

//          catch( BackingStoreException e1 ) {
//            newCfg = cfg;
//            GUIUtil.displayError( null, e1, getResourceString( "errLoadPrefs" ));
//          }
        }
        newCfg.toPrefs( abPrefs.node( newCfg.id ));
        if( trigger ) triggerCtrlRoomRefill();
      }
     
      fireTableRowsUpdated( row, row )// updates sorting!
    }
View Full Code Here

Examples of de.sciss.eisenkraut.io.RoutingConfig.toPrefs()

   
      for( int i = 0; i < collConfigs[ id ].size(); i++ ) {
        cfg = (RoutingConfig) collConfigs[ id ].get( i );
        if( setDirtyConfigs[ id ].remove( cfg.id )) {
          cfgPrefs  = ocPrefs.node( cfg.id );
          cfg.toPrefs( cfgPrefs );
//System.err.println( "adding / updating "+cfg.id + " (" + cfg.name + ")" );
        }
      }
     
      for( Iterator iter = setDirtyConfigs[ id ].iterator(); iter.hasNext(); ) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.