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/EditorFactory.java

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

package sun.jvm.hotspot.ui;

import javax.swing.JComponent;

/** An EditorFactory is the basis of pluggable editor components. One
    can configure the debugger with a new EditorFactory, which
    completely replaces how the debugger displays source code. */

public interface EditorFactory {
  /** Opens the given file in a new window. The debugger has already
      taken care of ensuring that the file can be found. The debugger
      will typically not create two Editor objects for the same source
      file, as it keeps track of open files. The EditorCommands object
      provided to the Editor by the debugger allows the Editor to
      notify the debugger of events such as a breakpoint being set or
      a window being closed. */
  public Editor openFile(String filename, EditorCommands commands);

  /** Retrieves the current topmost file of all of the Editors this
      EditorFactory has opened. This is used for the debugger user
      interface to request that a breakpoint be set. (Editors can also
      request that breakpoints be set via the EditorCommands, but this
      is intended to support external editors with their own
      keystrokes for performing this operation.) Returns null if there
      is no file currently being edited. */
  public Editor getCurrentEditor();
}

sun/jvm/hotspot/ui/EditorFactory.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, 131934👍, 0💬