You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-7Lines changed: 4 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,8 @@ The following settings are supported:
81
81
*`java.format.enabled` : Enable/disable the default Java formatter.
82
82
*`java.contentProvider.preferred` : Preferred content provider (see 3rd party decompilers available in [vscode-java-decompiler](https://github.com/dgileadi/vscode-java-decompiler)).
83
83
*`java.import.gradle.enabled` : Enable/disable the Gradle importer.
84
+
*`java.import.gradle.wrapper.enabled`: Enable/disable the Gradle wrapper.
85
+
*`java.import.gradle.version`: Gradle version, used if the gradle wrapper is missing or disabled.
84
86
*`java.import.maven.enabled` : Enable/disable the Maven importer.
85
87
*`java.autobuild.enabled` : Enable/disable the 'auto build'.
86
88
*`java.maxConcurrentBuilds`: Set max simultaneous project builds.
@@ -95,12 +97,10 @@ The following settings are supported:
95
97
*`java.completion.guessMethodArguments` : When set to true, method arguments are guessed when a method is selected from as list of code assist proposals.
*`java.configuration.checkProjectSettingsExclusions`: Checks if the extension-generated project settings files (`.project`, `.classpath`, `.factorypath`, `.settings/`) should be excluded from the file explorer. Defaults to `true`.
98
-
*`java.codeGeneration.hashCodeEquals.useJava7Objects`: Use Objects.hash and Objects.equals when generating the hashCode and equals methods. This setting only applies to Java 7 and higher. Defaults to `false`.
99
-
*`java.codeGeneration.hashCodeEquals.useInstanceof`: Use 'instanceof' to compare types when generating the hashCode and equals methods. Defaults to `false`.
100
100
*`java.foldingRange.enabled`: Enable/disable smart folding range support. If disabled, it will use the default indentation-based folding range provided by VS Code.
101
-
102
-
*New in 0.43.0:*
103
101
*`java.maven.downloadSources`: Enable/disable eager download of Maven source artifacts.
102
+
*`java.codeGeneration.hashCodeEquals.useInstanceof`: Use 'instanceof' to compare types when generating the hashCode and equals methods. Defaults to `false`.
103
+
*`java.codeGeneration.hashCodeEquals.useJava7Objects`: Use Objects.hash and Objects.equals when generating the hashCode and equals methods. This setting only applies to Java 7 and higher. Defaults to `false`.
104
104
*`java.codeGeneration.useBlocks`: Use blocks in 'if' statements when generating the methods. Defaults to `false`.
105
105
*`java.codeGeneration.generateComments`: Generate method comments when generating the methods. Defaults to `false`.
106
106
*`java.codeGeneration.toString.template`: The template for generating the toString method. Defaults to `${object.className} [${member.name()}=${member.value}, ${otherMembers}]`.
@@ -109,9 +109,6 @@ The following settings are supported:
109
109
*`java.codeGeneration.toString.listArrayContents`: List contents of arrays instead of using native toString(). Defaults to `true`.
110
110
*`java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
111
111
112
-
*New in 0.45.0:*
113
-
*`java.import.gradle.wrapper.enabled`: Enable/disable the Gradle wrapper.
114
-
*`java.import.gradle.version`: Gradle version, used if the gradle wrapper is missing or disabled.
0 commit comments