Package de.sciss.util

Examples of de.sciss.util.DynamicURLClassLoader


  public void oscCmd_initSwing( RoutedOSCMessage rom )
  {
    if( swingOSC != null ) return;
 
    final DynamicURLClassLoader  cl = new DynamicURLClassLoader( getClass().getClassLoader() );
    final Class          clz;
   
    try {
      cl.addURL( new File( OSCRoot.getInstance().getPreferences().get( KEY_SWINGAPP, null )).toURI().toURL() );
      clz = Class.forName( "de.sciss.swingosc.SwingOSC", true, cl );
//      swingOSC = new SwingOSC();
      swingOSC = clz.newInstance();
      // start( String protocol, int port, boolean loopBack, int bufSize, boolean initSwing, SocketAddress helloAddr)
//      swingOSC.start( OSCChannel.TCP, 12345, true, 8192, false, null );
View Full Code Here

TOP

Related Classes of de.sciss.util.DynamicURLClassLoader

Copyright © 2018 www.massapicom. 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.