Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions jdtls.ext/com.microsoft.jdtls.ext.core/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<command id="java.project.getMainClasses" />
<command id="java.project.generateJar" />
<command id="java.project.checkImportStatus" />
<command id="java.project.getImportClassContent" />
</delegateCommandHandler>
</extension>
<extension
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public Object executeCommand(String commandId, List<Object> arguments, IProgress
return ProjectCommand.exportJar(arguments, monitor);
case "java.project.checkImportStatus":
return ProjectCommand.checkImportStatus();
case "java.project.getImportClassContent":
return ProjectCommand.getImportClassContent(arguments, monitor);
default:
break;
}
Expand Down
Loading
Loading