Package org.moyrax.javascript

Examples of org.moyrax.javascript.ScriptComponent


      final ClassLoader classLoader) throws IOException {

    this(new ClassReader(classLoader.getResourceAsStream(
        hostClass.getName().replace(".", "/") + ".class")));

    this.script = new ScriptComponent(hostClass, classLoader);
    this.functions = script.getFunctionNames();
  }
View Full Code Here


  public ComponentClassAdapter (final String hostClass,
      final ClassLoader classLoader) throws IOException {
    this(new ClassReader(classLoader.getResourceAsStream(
        hostClass.replace(".", "/") + ".class")));

    this.script = new ScriptComponent(hostClass, classLoader);
    this.functions = script.getFunctionNames();
  }
View Full Code Here

TOP

Related Classes of org.moyrax.javascript.ScriptComponent

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.