We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92fbc75 commit 959e572Copy full SHA for 959e572
visualvm/heapviewer/src/com/sun/tools/visualvm/heapviewer/java/StackFrameNode.java
@@ -28,6 +28,7 @@
28
import org.netbeans.lib.profiler.heap.Heap;
29
import com.sun.tools.visualvm.heapviewer.model.DataType;
30
import com.sun.tools.visualvm.heapviewer.model.HeapViewerNode;
31
+import com.sun.tools.visualvm.heapviewer.model.NodesCache;
32
33
/**
34
*
@@ -54,6 +55,11 @@ public String toString() {
54
55
}
56
57
58
+ protected void resetChildren() {}
59
+
60
+ public void forgetChildren(NodesCache cache) {}
61
62
63
protected Object getValue(DataType type, Heap heap) {
64
if (type == DataType.NAME) return getName();
65
if (type == DataType.COUNT) return DataType.COUNT.getUnsupportedValue();
0 commit comments