Package rcl.internal

Examples of rcl.internal.Resource


    }
  }
 
  public static void __assign(Object modified, Object newValue) {
    if (newValue instanceof Resource && modified instanceof Entity) {
      Resource v = (Resource) newValue;
      if (((Object)v.__getController()) instanceof ThreadStagingArea) {
        Entity m = (Entity) modified;
        while (m instanceof Resource && m != newValue) {
          m = ((Resource)m).__getController();
        }
        if (!(m instanceof Resource)) {
          v.__setControl((Entity)modified);
//          System.err.println ("passed " + v + " to " + modified);
//          for (StackTraceElement e : Thread.currentThread().getStackTrace()) {
//            System.err.println(e.toString());
//          }
        }
View Full Code Here

TOP

Related Classes of rcl.internal.Resource

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.