Package profiler.utils

Examples of profiler.utils.IObjectProfileNode.children()


    case ALL_VERBOSE:
      System.out.println( header );
      IObjectProfileNode profile = ObjectProfiler.profile( obj );
      print( profile );
      mem = profile.size();
      for( IObjectProfileNode node : profile.children() ) {
        if( node.object() != null && node.object().equals( ATermUtils.getFactory() ) ) {
          mem -= node.size();
          break;
        }
      } 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.