Searched refs:jtop (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTopPlugin.java71 private JTop jtop = null; field in class:JTopPlugin
85 jtop = new JTop();
86 jtop.setMBeanServerConnection(
91 tabs.put("JTop", jtop);
101 return jtop.newSwingWorker();
124 if (newState == ConnectionState.CONNECTED && jtop != null) {
125 jtop.setMBeanServerConnection(
H A DJTop.java304 final JTop jtop = new JTop();
307 jtop.setMBeanServerConnection(server);
314 jtop.newSwingWorker().execute();
323 createAndShowGUI(jtop);
367 private static void createAndShowGUI(JPanel jtop) { argument
374 contentPane.add(jtop, BorderLayout.CENTER);
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/scripts/
H A Djtop.js43 * 'jtop' function. jtop prints threads sorting by CPU time.
44 * jtop can be called once or periodically from a timer thread.
45 * To call this once, just call 'jtop()' in script console prompt.
46 * To call jtop in a timer thread, you can use
48 * var t = setTimeout(function () { jtop(print); }, 2000);
98 function jtop(printFunc) { function

Completed in 146 milliseconds