Skip to content

Commit b341dd4

Browse files
committed
GH-466 Application recognizers for JDK tools updated
1 parent b8e2ebd commit b341dd4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

visualvm/application/src/org/graalvm/visualvm/application/type/Bundle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ DESCR_Jlink=jlink: tool to assemble and optimize a set of modules and their depe
6969
DESCR_Jmod=jmod: tool to create JMOD files and list the content of existing JMOD files.
7070
DESCR_Jpackage=jpackage: generates installable packages for modular and non-modular Java applications. Platform-specific packages for Linux, macOS and Windows provide your users with a familiar way to install and launch your applications.
7171
DESCR_Jrunscript=jrunscript: a command-line script shell that supports interactive and batch modes.
72+
DESCR_Jwebserver=jwebserver: tool provides a minimal HTTP server, designed to be used for prototyping, testing, and debugging.
73+
DESCR_Jdb=jdb: The Java Debugger (JDB) is a simple command-line debugger for Java classes.
74+
DESCR_Jhsdb=jhsdb: attach to a Java process or launch a postmortem debugger to analyze the content of a core dump from a crashed Java Virtual Machine (JVM).
7275
DESCR_Jar=jar: Java archive tool. Combines multiple files into a single JAR archive file.
7376
DESCR_Pack200=pack200: JAR packing tool. Java application that transforms a JAR file into a compressed pack200 file using the Java gzip compressor.
7477
DESCR_JavaDoc=javadoc: Java API documentation generator. Generates HTML pages of API documentation from Java source files.

visualvm/application/src/org/graalvm/visualvm/application/type/MainClassApplicationTypeFactory.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ public class MainClassApplicationTypeFactory extends AbstractModelProvider<Appli
7979
{"jdk.tools.jmod.Main","Jmod",descr("DESCR_Jmod"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
8080
{"jdk.incubator.jpackage.main.Main","Jpackage",descr("DESCR_Jpackage"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
8181
{"com.sun.tools.script.shell.Main","Jrunscript",descr("DESCR_Jrunscript"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
82+
{"sun.net.httpserver.simpleserver.JWebServer","Jwebserver",descr("DESCR_Jwebserver"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
83+
{"com.sun.tools.example.debug.tty.TTY","Jdb",descr("DESCR_Jdb"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
84+
{"sun.jvm.hotspot.SALauncher","Jhsdb",descr("DESCR_Jhsdb"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N
8285

8386
// JDK utilitites
8487
{"sun.tools.jar.Main","Jar",descr("DESCR_Jar"),"org/graalvm/visualvm/application/resources/application.png"}, // NOI18N

0 commit comments

Comments
 (0)