Package com.google.devtools.depan.java.graph

Examples of com.google.devtools.depan.java.graph.JavaRelation


    // simple className
    dl.newDep(mainClass, type, JavaRelation.TYPE);

    // field
    JavaRelation r = null;
    if ((Opcodes.ACC_STATIC & access) != 0) {
      r = JavaRelation.STATIC_FIELD;
    } else {
      r = JavaRelation.MEMBER_FIELD;
    }
View Full Code Here


      String signature, String[] exceptions) {

    // the method itself
    MethodElement m = new MethodElement(desc, name, mainClass);

    JavaRelation r = null;
    if ((Opcodes.ACC_STATIC & access) != 0) {
      r = JavaRelation.STATIC_METHOD;
    } else {
      r = JavaRelation.MEMBER_METHOD;
    }
View Full Code Here

TOP

Related Classes of com.google.devtools.depan.java.graph.JavaRelation

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.