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

Large diffs are not rendered by default.

172 changes: 172 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,7 @@
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@github/copilot-language-server": "^1.316.0",
"await-lock": "^2.2.2",
"fmtr": "^1.1.4",
"fs-extra": "^10.1.0",
Expand Down
2 changes: 2 additions & 0 deletions src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ export namespace Commands {

export const JAVA_PROJECT_GETMAINCLASSES = "java.project.getMainClasses";

export const JAVA_PROJECT_GETIMPORTCLASSCONTENT = "java.project.getImportClassContent";

export const JAVA_PROJECT_GENERATEJAR = "java.project.generateJar";

export const JAVA_BUILD_WORKSPACE = "java.workspace.compile";
Expand Down
Loading
Loading