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

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


    dl.newDep(packageNode, mainClass, JavaRelation.CLASS);

    dl.newDep(TypeNameUtil.fromInternalName(superName), mainClass,
        JavaRelation.EXTENDS);
    for (String s : interfaces) {
      InterfaceElement element = TypeNameUtil.fromInterfaceName(s);
      dl.newDep(element, mainClass, JavaRelation.IMPLEMENTS);
    }
    checkAnonymousType(name);
  }
View Full Code Here


   *     dependency graph
   */
  public static InterfaceElement fromInterfaceName(String interfaceName) {
    Type type = Type.getObjectType(interfaceName);
    String fullyQualifiedName = getFullyQualifiedInterfaceName(type);
    return new InterfaceElement(fullyQualifiedName);
  }
View Full Code Here

TOP

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

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.