X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Finspector%2Fjava%2Fstructure%2FFieldDescriptor.java;h=7128c4e3ec40b6282cff86699f1539f0b5feb959;hb=0a0fbcb01497d4a860cbbcb60ecefdcee4f89067;hp=e4611aa02b6bd1c9797194df7f9185cb2d139976;hpb=39a8ba91a8541b26180cc3c3dcb99f5ff295785d;p=javainspect.git diff --git a/src/main/java/eu/svjatoslav/inspector/java/structure/FieldDescriptor.java b/src/main/java/eu/svjatoslav/inspector/java/structure/FieldDescriptor.java old mode 100644 new mode 100755 index e4611aa..7128c4e --- a/src/main/java/eu/svjatoslav/inspector/java/structure/FieldDescriptor.java +++ b/src/main/java/eu/svjatoslav/inspector/java/structure/FieldDescriptor.java @@ -1,10 +1,10 @@ /* * JavaInspect - Utility to visualize java software - * Copyright (C) 2013, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu - * + * Copyright (C) 2013-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu + * * This program is free software; you can redistribute it and/or - * modify it under the terms of version 2 of the GNU General Public License - * as published by the Free Software Foundation. + * modify it under the terms of version 3 of the GNU Lesser General Public License + * or later as published by the Free Software Foundation. */ package eu.svjatoslav.inspector.java.structure; @@ -15,30 +15,31 @@ import java.lang.reflect.Type; import java.util.ArrayList; import java.util.List; +/** + * This class corresponds to single field within a java class. + */ + public class FieldDescriptor implements GraphElement { - public String name; - public ClassDescriptor type; - private ClassDescriptor parent; - List typeArguments = new ArrayList(); + private String name; + private ClassDescriptor type; + private final ClassDescriptor parentClass; + private final List typeArguments = new ArrayList(); + private boolean isInherited; - public FieldDescriptor(final Field field, final ClassDescriptor parent, - final ClassGraph dump) { + public FieldDescriptor(final ClassDescriptor parent) { + parentClass = parent; + } - this.parent = parent; + public void analyzeField(final Field field) { if (!field.getDeclaringClass().getName() - .equals(parent.fullyQualifiedName)) - // if field is inherited, do not index it - return; - - // if (field.getType().isArray()) - // System.out.println("field name: " + field.getName()); - - parent.nameToFieldMap.put(field.getName(), this); + .equals(parentClass.getFullyQualifiedName())) + isInherited = true; name = field.getName(); - type = dump.addClass(field.getType()); + type = parentClass.getClassGraph().getOrCreateClassDescriptor( + field.getType()); type.registerReference(); final Type genericType = field.getGenericType(); @@ -47,8 +48,8 @@ public class FieldDescriptor implements GraphElement { for (final Type t : pt.getActualTypeArguments()) if (t instanceof Class) { final Class cl = (Class) t; - final ClassDescriptor genericTypeDescriptor = dump - .addClass(cl); + final ClassDescriptor genericTypeDescriptor = parentClass + .getClassGraph().getOrCreateClassDescriptor(cl); genericTypeDescriptor.registerReference(); typeArguments.add(genericTypeDescriptor); } @@ -79,10 +80,10 @@ public class FieldDescriptor implements GraphElement { // main type boolean showLink = type.areReferencesShown(); - if (type == parent) + if (type == parentClass) showLink = false; - if (parent.isEnum) + if (parentClass.isEnum) showLink = false; if (showLink) @@ -102,7 +103,7 @@ public class FieldDescriptor implements GraphElement { final StringBuffer result = new StringBuffer(); result.append(" // " + name + "\n"); - if (parent.isEnum && (type == parent)) { + if (parentClass.isEnum && (type == parentClass)) { result.append(" "); result.append(name + "\n"); @@ -119,22 +120,30 @@ public class FieldDescriptor implements GraphElement { @Override public String getGraphId() { - return parent.getGraphId() + ":" + name; + return parentClass.getGraphId() + ":" + name; } - public int getOutsideVisibleReferencesCount() { + protected int getOutsideVisibleReferencesCount() { if (!isVisible()) return 0; - if (type.isVisible()) - return 1; + if (type != null) + if (type.isVisible()) + return 1; return 0; } + protected ClassDescriptor getType() { + return type; + } + @Override public boolean isVisible() { + if (isInherited) + return false; + if (name.contains("$")) return false; @@ -143,4 +152,5 @@ public class FieldDescriptor implements GraphElement { return true; } + } \ No newline at end of file