Examples of ENative


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
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.