Package classycle

Examples of classycle.NameAndSourceAttributes


   */
  public String render(AtomicVertex vertex, StrongComponent cycle,
                       int layerIndex)
  {
    String[] values = new String[10];
    NameAndSourceAttributes attributes = (NameAndSourceAttributes) vertex.getAttributes();
    values[0] = attributes.getName();
    values[2] = Integer.toString(attributes.getSize());
    values[9] = attributes.getSources();
    if (attributes instanceof ClassAttributes)
    {
      ClassAttributes ca = (ClassAttributes) attributes;
      values[1] = ca.getType();
      values[3] = ca.isInnerClass() ? "true" : "false";
View Full Code Here

TOP

Related Classes of classycle.NameAndSourceAttributes

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.