Package erjang

Examples of erjang.ENative


  private static void loadBIFs(String[] mods) throws Exception {
    for (String mod : mods) {
      Class<ENative> en =
        (Class<ENative>) Class.forName("erjang.m." + mod + ".Native");
      registerBifs(mod, en);
      ENative enative = en.newInstance();
      for (Class<?> c : enative.getNativeClasses()) {
        if (c != en) {
          registerBifs(mod, c);
        }
      }
    }
View Full Code Here

TOP

Related Classes of erjang.ENative

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.