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

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


  @Override
  public MethodVisitor visitMethod(int access, String name, String desc,
      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 {
View Full Code Here


  }

  @Override
  public void visitMethodInsn(
      int opcode, String owner, String name, String desc) {
    dl.newDep(thisElement, new MethodElement(desc, name,
      TypeNameUtil.fromInternalName(owner)), JavaRelation.CALL);
  }
View Full Code Here

TOP

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

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.