Package net.sourceforge.javautil.bytecode.api.type

Examples of net.sourceforge.javautil.bytecode.api.type.JavaInterface


  public JavaClassConcrete createConcreteClass (String name, Scope scope, boolean isStatic, boolean isFinal) {
    return new JavaClassConcrete(this, name, scope, isStatic, isFinal);
  }
 
  public JavaInterface createJavaInterface (String name, Scope scope, boolean isStatic, boolean isFinal) {
    return new JavaInterface(this, name, scope, isStatic, isFinal);
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.bytecode.api.type.JavaInterface

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.