Searched defs:tabInfos (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DVMPanel.java56 private static ArrayList<TabInfo> tabInfos = new ArrayList<TabInfo>(); field in class:VMPanel
83 tabInfos.add(new TabInfo(OverviewTab.class, OverviewTab.getTabName(), true));
84 tabInfos.add(new TabInfo(MemoryTab.class, MemoryTab.getTabName(), true));
85 tabInfos.add(new TabInfo(ThreadTab.class, ThreadTab.getTabName(), true));
86 tabInfos.add(new TabInfo(ClassTab.class, ClassTab.getTabName(), true));
87 tabInfos.add(new TabInfo(SummaryTab.class, SummaryTab.getTabName(), true));
88 tabInfos.add(new TabInfo(MBeansTab.class, MBeansTab.getTabName(), true));
92 return tabInfos.toArray(new TabInfo[tabInfos.size()]);
104 for (TabInfo tabInfo : tabInfos) {
[all...]

Completed in 28 milliseconds