-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (26 loc) · 1.04 KB
/
plugin.xml
File metadata and controls
26 lines (26 loc) · 1.04 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.jdtls.ext.core.CommandHandler">
<command id="java.project.refreshLib"/>
<command id="java.project.list"/>
<command id="java.getPackageData"/>
<command id="java.resolvePath" />
<command id="java.project.getMainClasses" />
<command id="java.project.generateJar" />
<command id="java.project.checkImportStatus" />
<command id="java.project.getImportClassContent" />
</delegateCommandHandler>
</extension>
<extension
point="org.eclipse.jdt.ls.core.contentProvider">
<contentProvider
class="com.microsoft.jdtls.ext.core.JarFileContentProvider"
id="jarFileContentProvider"
priority="10000"
uriPattern="jdt://jarentry/.*"
cacheable="true">
</contentProvider>
</extension>
</plugin>