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

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


  @Override
  public FieldVisitor visitField(int access, String name, String desc,
      String signature, Object value) {
    TypeElement type = TypeNameUtil.fromDescriptor(desc);
    FieldElement field = new FieldElement(name, type, mainClass);

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

    // field
View Full Code Here


  @Override
  public void visitFieldInsn(
      int opcode, String owner, String name, String desc) {
     // FIXME: is it a read ?
     dl.newDep(thisElement,
         new FieldElement(name, TypeNameUtil.fromDescriptor(desc),
           TypeNameUtil.fromInternalName(owner)),
         JavaRelation.READ);
  }
View Full Code Here

TOP

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

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.