Package net.sf.joafip.meminspector.entity

Examples of net.sf.joafip.meminspector.entity.ReferencingReferencedCouple


      final IncludedExcluded includedExcluded)
      throws MemInspectorException {
    this.includedExcluded = includedExcluded;
    visitedSet.clear();
    toVisitQueue.clear();
    toVisitQueue.add(new ReferencingReferencedCouple(null, rootObject, "",
        "", false));
    ReferencingReferencedCouple toVisit = toVisitQueue.pollFirst();
    while (toVisit != null) {
      final Object referencingObject = toVisit.getReferencedObject();
      if (referencingObject != null
          && visitedSet.add(newObjectIdentityKey(referencingObject))) {
        final String className = referencingObject.getClass().getName();
        if (!includedExcluded.getDoNotInspectClassSet().contains(
            className)) {
View Full Code Here


      final String className = clazz.getName();
      toAdd = includedNotExcluded(className)
          && !clazz.isAnnotationPresent(ExcludedClass.class);
    }
    if (toAdd) {
      list.add(new ReferencingReferencedCouple(referencingObject,
          referencedObject, referencingDeclaringClassName, fieldName,
          staticField));
    }
  }
View Full Code Here

TOP

Related Classes of net.sf.joafip.meminspector.entity.ReferencingReferencedCouple

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.