Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.jconsole.jmod - JConsole Tool
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool,
which can be invoked by the "jconsole" command.
JDK 11 JConsole tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jconsole.jmod.
JDK 11 JConsole tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JConsole tool source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jconsole.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/tools/jconsole/inspector/XPlottingViewer.java
/* * Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.tools.jconsole.inspector; import java.awt.*; import java.awt.event.*; import java.util.*; import java.util.Timer; import javax.swing.*; import sun.tools.jconsole.*; @SuppressWarnings("serial") public class XPlottingViewer extends PlotterPanel implements ActionListener { // TODO: Make number of decimal places customizable private static final int PLOTTER_DECIMALS = 4; private JButton plotButton; // The plotter cache holds Plotter instances for the various attributes private static HashMap<String, XPlottingViewer> plotterCache = new HashMap<String, XPlottingViewer>(); private static HashMap<String, Timer> timerCache = new HashMap<String, Timer>(); private MBeansTab tab; private String attributeName; private String key; private JTable table; private XPlottingViewer(String key, XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) { super(null); this.tab = tab; this.key = key; this.table = table; this.attributeName = attributeName; Plotter plotter = createPlotter(mbean, attributeName, key, table); setupDisplay(plotter); } static void dispose(MBeansTab tab) { Iterator<String> it = plotterCache.keySet().iterator(); while(it.hasNext()) { String key = it.next(); if(key.startsWith(String.valueOf(tab.hashCode()))) { it.remove(); } } //plotterCache.clear(); it = timerCache.keySet().iterator(); while(it.hasNext()) { String key = it.next(); if(key.startsWith(String.valueOf(tab.hashCode()))) { Timer t = timerCache.get(key); t.cancel(); it.remove(); } } } public static boolean isViewableValue(Object value) { return (value instanceof Number); } //Fired by dbl click public static Component loadPlotting(XMBean mbean, String attributeName, Object value, JTable table, MBeansTab tab) { Component comp = null; if(isViewableValue(value)) { String key = String.valueOf(tab.hashCode()) + " " + String.valueOf(mbean.hashCode()) + " " + mbean.getObjectName().getCanonicalName() + attributeName; XPlottingViewer plotter = plotterCache.get(key); if(plotter == null) { plotter = new XPlottingViewer(key, mbean, attributeName, value, table, tab); plotterCache.put(key, plotter); } comp = plotter; } return comp; } /*public void paintComponent(Graphics g) { super.paintComponent(g); setBackground(g.getColor()); plotter.paintComponent(g); }*/ @Override public void actionPerformed(ActionEvent evt) { plotterCache.remove(key); Timer t = timerCache.remove(key); t.cancel(); ((XMBeanAttributes) table).collapse(attributeName, this); } //Create plotter instance public Plotter createPlotter(final XMBean xmbean, final String attributeName, String key, JTable table) { final Plotter plotter = new XPlotter(table, Plotter.Unit.NONE) { Dimension prefSize = new Dimension(400, 170); @Override public Dimension getPreferredSize() { return prefSize; } @Override public Dimension getMinimumSize() { return prefSize; } }; plotter.createSequence(attributeName, attributeName, null, true); TimerTask timerTask = new TimerTask() { public void run() { tab.workerAdd(new Runnable() { public void run() { try { Number n = (Number) xmbean.getSnapshotMBeanServerConnection().getAttribute(xmbean.getObjectName(), attributeName); long v; if (n instanceof Float || n instanceof Double) { plotter.setDecimals(PLOTTER_DECIMALS); double d = (n instanceof Float) ? (Float)n : (Double)n; v = Math.round(d * Math.pow(10.0, PLOTTER_DECIMALS)); } else { v = n.longValue(); } plotter.addValues(System.currentTimeMillis(), v); } catch (Exception ex) { // Should have a trace logged with proper // trace mecchanism } } }); } }; String timerName = "Timer-" + key; Timer timer = new Timer(timerName, true); timer.schedule(timerTask, 0, tab.getUpdateInterval()); timerCache.put(key, timer); return plotter; } private void setupDisplay(Plotter plotter) { final JPanel buttonPanel = new JPanel(); final GridBagLayout gbl = new GridBagLayout(); buttonPanel.setLayout(gbl); setLayout(new BorderLayout()); plotButton = new JButton(Messages.DISCARD_CHART); plotButton.addActionListener(this); plotButton.setEnabled(true); GridBagConstraints buttonConstraints = new GridBagConstraints(); buttonConstraints.gridx = 0; buttonConstraints.gridy = 0; buttonConstraints.fill = GridBagConstraints.VERTICAL; buttonConstraints.anchor = GridBagConstraints.CENTER; gbl.setConstraints(plotButton, buttonConstraints); buttonPanel.add(plotButton); if (attributeName != null && attributeName.length()!=0) { final JPanel plotterLabelPanel = new JPanel(); final JLabel label = new JLabel(attributeName); final GridBagLayout gbl2 = new GridBagLayout(); plotterLabelPanel.setLayout(gbl2); final GridBagConstraints labelConstraints = new GridBagConstraints(); labelConstraints.gridx = 0; labelConstraints.gridy = 0; labelConstraints.fill = GridBagConstraints.VERTICAL; labelConstraints.anchor = GridBagConstraints.CENTER; labelConstraints.ipady = 10; gbl2.setConstraints(label, labelConstraints); plotterLabelPanel.add(label); add(plotterLabelPanel, BorderLayout.NORTH); } setPlotter(plotter); add(buttonPanel, BorderLayout.SOUTH); repaint(); } }
⏎ sun/tools/jconsole/inspector/XPlottingViewer.java
Or download all of them as a single archive file:
File name: jdk.jconsole-11.0.1-src.zip File size: 164713 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jdeps.jmod - JDeps Tool
2020-07-07, 22655👍, 0💬
Popular Posts:
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
What Is ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is the JAR files of ojdbc.jar, JD...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...