JDK 11 jdk.hotspot.agent.jmod - Hotspot Agent Module

JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module.

JDK 11 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.hotspot.agent.jmod.

JDK 11 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.

JDK 11 Hotspot Agent module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.hotspot.agent.

You can click and view the content of each source code file in the list below.

✍: FYIcenter

sun/jvm/hotspot/ui/FindByQueryPanel.java

/*
 * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */

package sun.jvm.hotspot.ui;

import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
import sun.jvm.hotspot.debugger.*;
import sun.jvm.hotspot.oops.*;
import sun.jvm.hotspot.runtime.*;
import sun.jvm.hotspot.ui.tree.*;
import sun.jvm.hotspot.utilities.soql.*;

public class FindByQueryPanel extends SAPanel {
   private JTextArea           queryEditor;
   private JEditorPane         objectsEditor;
   private SOQLEngine          queryEngine;

   public FindByQueryPanel() {
      queryEngine = SOQLEngine.getEngine();
      HyperlinkListener hyperListener = new HyperlinkListener() {
                         public void hyperlinkUpdate(HyperlinkEvent e) {
                            if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
                               VM vm = VM.getVM();
                               OopHandle handle = vm.getDebugger().parseAddress(e.getDescription()).addOffsetToAsOopHandle(0);
                               showInspector(vm.getObjectHeap().newOop(handle));
                            }
                         }
                      };

      objectsEditor = new JEditorPane();
      objectsEditor.setContentType("text/html");
      objectsEditor.setEditable(false);
      objectsEditor.addHyperlinkListener(hyperListener);

      queryEditor = new JTextArea();
      JButton queryButton = new JButton("Execute");
      queryButton.addActionListener(new ActionListener() {
                                       public void actionPerformed(ActionEvent ae) {
                                          final StringBuffer buf = new StringBuffer();
                                          buf.append("<html><body>");
                                          try {
                                             queryEngine.executeQuery(queryEditor.getText(),
                                                        new ObjectVisitor() {
                                                           public void visit(Object o) {
                                                              if (o != null && o instanceof JSJavaObject) {
                                                                 String oopAddr = ((JSJavaObject)o).getOop().getHandle().toString();
                                                                 buf.append("<a href='");
                                                                 buf.append(oopAddr);
                                                                 buf.append("'>");
                                                                 buf.append(oopAddr);
                                                                 buf.append("</a>");
                                                              } else {
                                                                 buf.append((o == null)? "null" : o.toString());
                                                              }
                                                              buf.append("<br>");
                                                           }
                                                        });

                                          } catch (Exception e) {
                                             e.printStackTrace();
                                             buf.append("<b>");
                                             buf.append(e.getMessage());
                                             buf.append("</b>");
                                          }
                                          buf.append("</body></html>");
                                          objectsEditor.setText(buf.toString());
                                       }
                                   });

      JPanel topPanel = new JPanel();
      topPanel.setLayout(new BorderLayout());
      topPanel.add(new JLabel("SOQL Query :"), BorderLayout.WEST);
      topPanel.add(new JScrollPane(queryEditor), BorderLayout.CENTER);
      topPanel.add(queryButton, BorderLayout.EAST);

      JPanel bottomPanel = new JPanel();
      bottomPanel.setLayout(new BorderLayout());
      bottomPanel.add(new JScrollPane(objectsEditor), BorderLayout.CENTER);

      JSplitPane splitPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, topPanel, bottomPanel);
      splitPane.setDividerLocation(0.3);

      setLayout(new BorderLayout());
      add(splitPane, BorderLayout.CENTER);
   }
}

sun/jvm/hotspot/ui/FindByQueryPanel.java

 

Or download all of them as a single archive file:

File name: jdk.hotspot.agent-11.0.1-src.zip
File size: 1243786 bytes
Release date: 2018-11-04
Download 

 

JDK 11 jdk.httpserver.jmod - HTTP Server Module

JDK 11 jdk.editpad.jmod - Edit Pad Module

Download and Use JDK 11

⇑⇑ FAQ for JDK (Java Development Kit)

2020-02-29, 131774👍, 0💬