Searched defs:buildClosure (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/apiscan/classfile/
H A DASMClosureCompilerImpl.java70 // holds result of current buildClosure() method
105 public boolean buildClosure(String className) { method in class:ASMClosureCompilerImpl
106 logger.entering(myClassName, "buildClosure", className); // NOI18N
119 buildClosure(next);
125 private void buildClosure(Method m) { method in class:ASMClosureCompilerImpl
127 logger.entering("ASMClosureCompilerImpl", "buildClosure", // NOI18N
146 buildClosure(nextMethod);//recurssive call
202 // pop callStack before buildClosure is called for clinit
207 buildClosure(clinitMethod); // recurssive call
H A DBCELClosureCompilerImpl.java87 public boolean buildClosure(String className) { method in class:BCELClosureCompilerImpl
88 logger.entering(myClassName, "buildClosure", className); // NOI18N
98 return buildClosure(cf);
103 * same as the other buildClosure() method.
105 private boolean buildClosure(ClassFile cf) { method in class:BCELClosureCompilerImpl
132 boolean newresult = buildClosure(next);//recurssive call
H A DClosureCompiler.java66 * first=cc.buildClosure("a.B"); boolean second=cc.buildClosure("a.B");
71 boolean buildClosure(String externalClsName); method in interface:ClosureCompiler
H A DClosureCompilerImpl.java69 * boolean successful=cc.buildClosure("a.b.MyEjb");
70 * successful=cc.buildClosure("a.b.YourEjb") && successful; //note the order of
174 public boolean buildClosure(String className) { method in class:ClosureCompilerImpl
175 logger.entering(myClassName, "buildClosure", className); // NOI18N
176 return imp.buildClosure(className);
184 public boolean buildClosure(java.util.jar.JarFile jar) throws IOException { method in class:ClosureCompilerImpl
185 return imp.buildClosure(jar);
239 closure.buildClosure(clsName);
H A DClosureCompilerImplBase.java132 public boolean buildClosure(java.util.jar.JarFile jar) throws IOException { method in class:ClosureCompilerImplBase
141 boolean newresult = this.buildClosure(externalClsName);

Completed in 65 milliseconds