forked from microsoft/java-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (26 loc) · 1.35 KB
/
plugin.xml
File metadata and controls
26 lines (26 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.jdt.ls.core.delegateCommandHandler">
<delegateCommandHandler class="com.microsoft.java.debug.plugin.internal.JavaDebugDelegateCommandHandler">
<command id="vscode.java.startDebugSession"/>
<command id="vscode.java.resolveClasspath"/>
<command id="vscode.java.resolveMainClass"/>
<command id="vscode.java.buildWorkspace"/>
<command id="vscode.java.fetchUsageData"/>
<command id="vscode.java.updateDebugSettings"/>
<command id="vscode.java.validateLaunchConfig"/>
<command id="vscode.java.resolveMainMethod"/>
<command id="vscode.java.inferLaunchCommandLength"/>
<command id="vscode.java.checkProjectSettings"/>
<command id="vscode.java.resolveElementAtSelection"/>
<command id="vscode.java.resolveBuildFiles"/>
<command id="vscode.java.isOnClasspath"/>
<command id="vscode.java.resolveJavaExecutable"/>
<command id="vscode.java.fetchPlatformSettings"/>
<command id="vscode.java.resolveClassFilters"/>
<command id="vscode.java.resolveSourceUri"/>
<command id="vscode.java.resolveInlineVariables"/>
</delegateCommandHandler>
</extension>
</plugin>