Java Doc for PrestimeCPUCCTNodeBacked.java in  » IDE-Netbeans » cvsclient » org » netbeans » lib » profiler » results » cpu » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Netbeans » cvsclient » org.netbeans.lib.profiler.results.cpu 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNode
      org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNodeBacked

PrestimeCPUCCTNodeBacked
public class PrestimeCPUCCTNodeBacked extends PrestimeCPUCCTNode (Code)
Presentation-Time CPU Profiling Calling Context Tree (CCT) Node backed by the flattened tree data array in CPUCCTContainer. These nodes are constructed on demand, i.e. only when the user opens some node in the CCT on screen. They contain minimum amount of data in the node instance itself. As a result, a tree constructed of such nodes has a very small overhead on top of the flattened data that already exists (and has relatively low space consumption and construction time). The drawback is that it's difficult to add elements to a tree represented in the flattened form.
author:
   Misha Dmitriev


Field Summary
protected  intcompactDataOfs
    
protected  intnChildren
    

Constructor Summary
public  PrestimeCPUCCTNodeBacked(CPUCCTContainer container, PrestimeCPUCCTNode parent, int compactDataOfs)
    
protected  PrestimeCPUCCTNodeBacked(CPUCCTContainer container, PrestimeCPUCCTNode[] children)
    
protected  PrestimeCPUCCTNodeBacked()
    

Method Summary
protected  PrestimeCPUCCTNodecreateSelfTimeNodeForThisNode()
    
public  CCTNodegetChild(int index)
    
public  CCTNode[]getChildren()
    
public  intgetMethodId()
    
public  intgetNCalls()
    
public  intgetNChildren()
    
public  longgetSleepTime0()
    
public  intgetThreadId()
    
public  longgetTotalTime0()
    
public  floatgetTotalTime0InPerCent()
    
public  longgetTotalTime1()
    
public  floatgetTotalTime1InPerCent()
    
public  longgetWaitTime0()
    
public  voidsortChildren(int sortBy, boolean sortOrder)
    

Field Detail
compactDataOfs
protected int compactDataOfs(Code)



nChildren
protected int nChildren(Code)




Constructor Detail
PrestimeCPUCCTNodeBacked
public PrestimeCPUCCTNodeBacked(CPUCCTContainer container, PrestimeCPUCCTNode parent, int compactDataOfs)(Code)
Constructor for creating normal nodes representing methods



PrestimeCPUCCTNodeBacked
protected PrestimeCPUCCTNodeBacked(CPUCCTContainer container, PrestimeCPUCCTNode[] children)(Code)
Constructor for creating a node that represent a whole thread



PrestimeCPUCCTNodeBacked
protected PrestimeCPUCCTNodeBacked()(Code)




Method Detail
createSelfTimeNodeForThisNode
protected PrestimeCPUCCTNode createSelfTimeNodeForThisNode()(Code)



getChild
public CCTNode getChild(int index)(Code)



getChildren
public CCTNode[] getChildren()(Code)



getMethodId
public int getMethodId()(Code)



getNCalls
public int getNCalls()(Code)



getNChildren
public int getNChildren()(Code)



getSleepTime0
public long getSleepTime0()(Code)



getThreadId
public int getThreadId()(Code)



getTotalTime0
public long getTotalTime0()(Code)



getTotalTime0InPerCent
public float getTotalTime0InPerCent()(Code)



getTotalTime1
public long getTotalTime1()(Code)



getTotalTime1InPerCent
public float getTotalTime1InPerCent()(Code)



getWaitTime0
public long getWaitTime0()(Code)



sortChildren
public void sortChildren(int sortBy, boolean sortOrder)(Code)



Fields inherited from org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNode
final protected static char MASK_CONTEXT_CALLS_NODE(Code)(Java Doc)
final protected static char MASK_SELF_TIME_NODE(Code)(Java Doc)
final protected static char MASK_THREAD_NODE(Code)(Java Doc)
final public static int SORT_BY_INVOCATIONS(Code)(Java Doc)
final public static int SORT_BY_NAME(Code)(Java Doc)
final public static int SORT_BY_TIME_0(Code)(Java Doc)
final public static int SORT_BY_TIME_1(Code)(Java Doc)
protected PrestimeCPUCCTNode[] children(Code)(Java Doc)
protected CPUCCTContainer container(Code)(Java Doc)
protected char flags(Code)(Java Doc)
protected PrestimeCPUCCTNode parent(Code)(Java Doc)

Methods inherited from org.netbeans.lib.profiler.results.cpu.PrestimeCPUCCTNode
protected void doSortChildren(int sortBy, boolean sortOrder)(Code)(Java Doc)
abstract public CCTNode getChild(int index)(Code)(Java Doc)
abstract public CCTNode[] getChildren()(Code)(Java Doc)
public CPUCCTContainer getContainer()(Code)(Java Doc)
public int getIndexOfChild(Object child)(Code)(Java Doc)
public String[] getMethodClassNameAndSig()(Code)(Java Doc)
abstract public int getMethodId()(Code)(Java Doc)
abstract public int getNCalls()(Code)(Java Doc)
abstract public int getNChildren()(Code)(Java Doc)
public String getNodeName()(Code)(Java Doc)
public CCTNode getParent()(Code)(Java Doc)
abstract public long getSleepTime0()(Code)(Java Doc)
abstract public int getThreadId()(Code)(Java Doc)
abstract public long getTotalTime0()(Code)(Java Doc)
abstract public float getTotalTime0InPerCent()(Code)(Java Doc)
abstract public long getTotalTime1()(Code)(Java Doc)
abstract public float getTotalTime1InPerCent()(Code)(Java Doc)
abstract public long getWaitTime0()(Code)(Java Doc)
public boolean isContextCallsNode()(Code)(Java Doc)
public boolean isSelfTimeNode()(Code)(Java Doc)
public boolean isThreadNode()(Code)(Java Doc)
public void setContextCallsNode()(Code)(Java Doc)
public void setSelfTimeNode()(Code)(Java Doc)
public void setThreadNode()(Code)(Java Doc)
abstract public void sortChildren(int sortBy, boolean sortOrder)(Code)(Java Doc)
protected void sortChildrenByInvocations(boolean sortOrder)(Code)(Java Doc)
protected void sortChildrenByName(boolean sortOrder)(Code)(Java Doc)
protected void sortChildrenByTime0(boolean sortOrder)(Code)(Java Doc)
protected void sortChildrenByTime1(boolean sortOrder)(Code)(Java Doc)
protected void sortInts(int[] values, boolean sortOrder)(Code)(Java Doc)
protected void sortLongs(long[] values, boolean sortOrder)(Code)(Java Doc)
protected void sortStrings(String[] values, boolean sortOrder)(Code)(Java Doc)
public String toString()(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.