Skip to content

Commit 7e723e4

Browse files
committed
Updated comments
1 parent 4e40d37 commit 7e723e4

File tree

1 file changed

+5
-5
lines changed
  • modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin

1 file changed

+5
-5
lines changed

modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin/CodeGenMojo.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public class CodeGenMojo extends AbstractMojo {
185185
private Map<?, ?> configOptions;
186186

187187
/**
188-
* A map of classes and the import that should be used for that class
188+
* A map of types and the types they should be instantiated as
189189
*/
190190
@Parameter(name = "instantiationTypes")
191191
private List<String> instantiationTypes;
@@ -197,25 +197,25 @@ public class CodeGenMojo extends AbstractMojo {
197197
private List<String> importMappings;
198198

199199
/**
200-
* A map of classes and the import that should be used for that class
200+
* A map of swagger spec types and the generated code types to use for them
201201
*/
202202
@Parameter(name = "typeMappings")
203203
private List<String> typeMappings;
204204

205205
/**
206-
* A map of classes and the import that should be used for that class
206+
* A map of additional language specific primitive types
207207
*/
208208
@Parameter(name = "languageSpecificPrimitives")
209209
private List<String> languageSpecificPrimitives;
210210

211211
/**
212-
* A map of classes and the import that should be used for that class
212+
* A map of additional properties that can be referenced by the mustache templates
213213
*/
214214
@Parameter(name = "additionalProperties")
215215
private List<String> additionalProperties;
216216

217217
/**
218-
* A map of classes and the import that should be used for that class
218+
* A map of reserved names and how they should be escaped
219219
*/
220220
@Parameter(name = "reservedWordsMappings")
221221
private List<String> reservedWordsMappings;

0 commit comments

Comments
 (0)