1 23 24 package org.objectweb.fractal.julia.loader; 25 26 import java.util.Map ; 27 28 31 32 public interface Loader { 33 34 40 41 void init (Map context) throws Exception ; 42 43 50 51 Tree loadTree (String name) throws Exception ; 52 53 67 68 Tree evalTree (Tree tree, Map context) throws Exception ; 69 70 97 98 Object newObject (Tree objectDescriptor, Object loader) throws Exception ; 99 100 108 109 Class loadClass (String className, Object loader) throws ClassNotFoundException ; 110 111 136 137 Class loadClass (Tree classDescriptor, Object loader) throws ClassNotFoundException ; 138 } 139 | Popular Tags |