blob: a75127a3622c065708d62ce7922afd12a1008dd5 [file] [log] [blame]
Sahil Lele372d1f32015-07-31 15:01:41 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.maven;
17
18import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
andreafaa2c4b2015-11-16 13:48:39 -080021import com.google.common.base.Charsets;
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070022import com.google.common.io.ByteStreams;
23import com.google.common.io.Files;
Sahil Lele372d1f32015-07-31 15:01:41 -070024import com.thoughtworks.qdox.JavaProjectBuilder;
25import com.thoughtworks.qdox.model.DocletTag;
26import com.thoughtworks.qdox.model.JavaAnnotation;
27import com.thoughtworks.qdox.model.JavaClass;
28import com.thoughtworks.qdox.model.JavaMethod;
29import com.thoughtworks.qdox.model.JavaParameter;
30import com.thoughtworks.qdox.model.JavaType;
31import org.apache.maven.plugin.AbstractMojo;
32import org.apache.maven.plugin.MojoExecutionException;
33import org.apache.maven.plugins.annotations.LifecyclePhase;
34import org.apache.maven.plugins.annotations.Mojo;
35import org.apache.maven.plugins.annotations.Parameter;
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070036import org.apache.maven.project.MavenProject;
Sahil Lele372d1f32015-07-31 15:01:41 -070037
38import java.io.File;
39import java.io.FileWriter;
40import java.io.IOException;
41import java.io.PrintWriter;
42import java.util.HashMap;
43import java.util.Map;
44import java.util.Optional;
45
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070046import static com.google.common.base.Strings.isNullOrEmpty;
47
Sahil Lele372d1f32015-07-31 15:01:41 -070048/**
49 * Produces ONOS Swagger api-doc.
50 */
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070051@Mojo(name = "swagger", defaultPhase = LifecyclePhase.GENERATE_SOURCES)
Sahil Lele372d1f32015-07-31 15:01:41 -070052public class OnosSwaggerMojo extends AbstractMojo {
53 private final ObjectMapper mapper = new ObjectMapper();
54
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070055 private static final String JSON_FILE = "swagger.json";
56 private static final String GEN_SRC = "generated-sources";
57 private static final String REG_SRC = "registrator.javat";
58
Sahil Lele372d1f32015-07-31 15:01:41 -070059 private static final String PATH = "javax.ws.rs.Path";
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070060 private static final String PATH_PARAM = "javax.ws.rs.PathParam";
61 private static final String QUERY_PARAM = "javax.ws.rs.QueryParam";
Sahil Lele372d1f32015-07-31 15:01:41 -070062 private static final String POST = "javax.ws.rs.POST";
63 private static final String GET = "javax.ws.rs.GET";
64 private static final String PUT = "javax.ws.rs.PUT";
65 private static final String DELETE = "javax.ws.rs.DELETE";
66 private static final String PRODUCES = "javax.ws.rs.Produces";
67 private static final String CONSUMES = "javax.ws.rs.Consumes";
68 private static final String JSON = "MediaType.APPLICATION_JSON";
69
70 /**
71 * The directory where the generated catalogue file will be put.
72 */
73 @Parameter(defaultValue = "${basedir}")
74 protected File srcDirectory;
75
76 /**
77 * The directory where the generated catalogue file will be put.
78 */
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070079 @Parameter(defaultValue = "${project.build.directory}")
Sahil Lele372d1f32015-07-31 15:01:41 -070080 protected File dstDirectory;
81
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -070082 /**
83 * REST API web-context
84 */
85 @Parameter(defaultValue = "${web.context}")
86 protected String webContext;
87
88 /**
89 * REST API version
90 */
91 @Parameter(defaultValue = "${api.version}")
92 protected String apiVersion;
93
94 /**
95 * REST API description
96 */
97 @Parameter(defaultValue = "${api.description}")
98 protected String apiDescription;
99
100 /**
101 * REST API title
102 */
103 @Parameter(defaultValue = "${api.title}")
104 protected String apiTitle;
105
106 /**
107 * REST API title
108 */
109 @Parameter(defaultValue = "${api.package}")
110 protected String apiPackage;
111
112 /**
113 * Maven project
114 */
115 @Parameter(defaultValue = "${project}")
116 protected MavenProject project;
117
118
Sahil Lele372d1f32015-07-31 15:01:41 -0700119 @Override
120 public void execute() throws MojoExecutionException {
Sahil Lele372d1f32015-07-31 15:01:41 -0700121 try {
122 JavaProjectBuilder builder = new JavaProjectBuilder();
123 builder.addSourceTree(new File(srcDirectory, "src/main/java"));
124
125 ObjectNode root = initializeRoot();
Sahil Lele372d1f32015-07-31 15:01:41 -0700126 ArrayNode tags = mapper.createArrayNode();
Sahil Lele372d1f32015-07-31 15:01:41 -0700127 ObjectNode paths = mapper.createObjectNode();
andreafaa2c4b2015-11-16 13:48:39 -0800128 ObjectNode definitions = mapper.createObjectNode();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700129
130 root.set("tags", tags);
Sahil Lele372d1f32015-07-31 15:01:41 -0700131 root.set("paths", paths);
andreafaa2c4b2015-11-16 13:48:39 -0800132 root.set("definitions", definitions);
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700133
andreafaa2c4b2015-11-16 13:48:39 -0800134 builder.getClasses().forEach(jc -> processClass(jc, paths, tags, definitions));
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700135
136 if (paths.size() > 0) {
137 getLog().info("Generating ONOS REST API documentation...");
138 genCatalog(root);
139
140 if (!isNullOrEmpty(apiPackage)) {
141 genRegistrator();
142 }
143 }
144
145 project.addCompileSourceRoot(new File(dstDirectory, GEN_SRC).getPath());
146
Sahil Lele372d1f32015-07-31 15:01:41 -0700147 } catch (Exception e) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700148 getLog().warn("Unable to generate ONOS REST API documentation", e);
Sahil Lele372d1f32015-07-31 15:01:41 -0700149 throw e;
150 }
151 }
152
153 // initializes top level root with Swagger required specifications
154 private ObjectNode initializeRoot() {
155 ObjectNode root = mapper.createObjectNode();
156 root.put("swagger", "2.0");
157 ObjectNode info = mapper.createObjectNode();
158 root.set("info", info);
Sahil Lele372d1f32015-07-31 15:01:41 -0700159
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700160 root.put("basePath", webContext);
161 info.put("version", apiVersion);
162 info.put("title", apiTitle);
163 info.put("description", apiDescription);
Sahil Lele372d1f32015-07-31 15:01:41 -0700164
165 ArrayNode produces = mapper.createArrayNode();
166 produces.add("application/json");
167 root.set("produces", produces);
168
169 ArrayNode consumes = mapper.createArrayNode();
170 consumes.add("application/json");
171 root.set("consumes", consumes);
172
173 return root;
174 }
175
176 // Checks whether javaClass has a path tag associated with it and if it does
177 // processes its methods and creates a tag for the class on the root
andreafaa2c4b2015-11-16 13:48:39 -0800178 void processClass(JavaClass javaClass, ObjectNode paths, ArrayNode tags, ObjectNode definitions) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700179 // If the class does not have a Path tag then ignore it
180 JavaAnnotation annotation = getPathAnnotation(javaClass);
Sahil Lele372d1f32015-07-31 15:01:41 -0700181 if (annotation == null) {
182 return;
183 }
184
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700185 String path = getPath(annotation);
186 if (path == null) {
187 return;
Sahil Lele372d1f32015-07-31 15:01:41 -0700188 }
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700189
190 String resourcePath = "/" + path;
191 String tagPath = path.isEmpty() ? "/" : path;
192
193 // Create tag node for this class.
194 ObjectNode tagObject = mapper.createObjectNode();
195 tagObject.put("name", tagPath);
Sahil Lele372d1f32015-07-31 15:01:41 -0700196 if (javaClass.getComment() != null) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700197 tagObject.put("description", shortText(javaClass.getComment()));
Sahil Lele372d1f32015-07-31 15:01:41 -0700198 }
199 tags.add(tagObject);
200
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700201 // Create an array node add to all methods from this class.
Sahil Lele372d1f32015-07-31 15:01:41 -0700202 ArrayNode tagArray = mapper.createArrayNode();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700203 tagArray.add(tagPath);
Sahil Lele372d1f32015-07-31 15:01:41 -0700204
andreafaa2c4b2015-11-16 13:48:39 -0800205 processAllMethods(javaClass, resourcePath, paths, tagArray, definitions);
Sahil Lele372d1f32015-07-31 15:01:41 -0700206 }
207
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700208 private JavaAnnotation getPathAnnotation(JavaClass javaClass) {
209 Optional<JavaAnnotation> optional = javaClass.getAnnotations()
210 .stream().filter(a -> a.getType().getName().equals(PATH)).findAny();
211 return optional.isPresent() ? optional.get() : null;
212 }
213
Sahil Lele372d1f32015-07-31 15:01:41 -0700214 // Checks whether a class's methods are REST methods and then places all the
215 // methods under a specific path into the paths node
216 private void processAllMethods(JavaClass javaClass, String resourcePath,
andreafaa2c4b2015-11-16 13:48:39 -0800217 ObjectNode paths, ArrayNode tagArray, ObjectNode definitions) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700218 // map of the path to its methods represented by an ObjectNode
219 Map<String, ObjectNode> pathMap = new HashMap<>();
220
221 javaClass.getMethods().forEach(javaMethod -> {
222 javaMethod.getAnnotations().forEach(annotation -> {
223 String name = annotation.getType().getName();
224 if (name.equals(POST) || name.equals(GET) || name.equals(DELETE) || name.equals(PUT)) {
225 // substring(12) removes "javax.ws.rs."
226 String method = annotation.getType().toString().substring(12).toLowerCase();
andreafaa2c4b2015-11-16 13:48:39 -0800227 processRestMethod(javaMethod, method, pathMap, resourcePath, tagArray, definitions);
Sahil Lele372d1f32015-07-31 15:01:41 -0700228 }
229 });
230 });
231
232 // for each path add its methods to the path node
233 for (Map.Entry<String, ObjectNode> entry : pathMap.entrySet()) {
234 paths.set(entry.getKey(), entry.getValue());
235 }
236
237
238 }
239
240 private void processRestMethod(JavaMethod javaMethod, String method,
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700241 Map<String, ObjectNode> pathMap,
andreafaa2c4b2015-11-16 13:48:39 -0800242 String resourcePath, ArrayNode tagArray, ObjectNode definitions) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700243 String fullPath = resourcePath, consumes = "", produces = "",
244 comment = javaMethod.getComment();
andreafaa2c4b2015-11-16 13:48:39 -0800245 DocletTag tag = javaMethod.getTagByName("rsModel");
Sahil Lele372d1f32015-07-31 15:01:41 -0700246 for (JavaAnnotation annotation : javaMethod.getAnnotations()) {
247 String name = annotation.getType().getName();
248 if (name.equals(PATH)) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700249 fullPath = resourcePath + "/" + getPath(annotation);
250 fullPath = fullPath.replaceFirst("^//", "/");
Sahil Lele372d1f32015-07-31 15:01:41 -0700251 }
252 if (name.equals(CONSUMES)) {
253 consumes = getIOType(annotation);
254 }
255 if (name.equals(PRODUCES)) {
256 produces = getIOType(annotation);
257 }
258 }
259 ObjectNode methodNode = mapper.createObjectNode();
260 methodNode.set("tags", tagArray);
261
262 addSummaryDescriptions(methodNode, comment);
andreafaa2c4b2015-11-16 13:48:39 -0800263 addJsonSchemaDefinition(definitions, tag);
264 addJsonSchemaDefinition(definitions, tag);
265
266 processParameters(javaMethod, methodNode, method, tag);
Sahil Lele372d1f32015-07-31 15:01:41 -0700267
268 processConsumesProduces(methodNode, "consumes", consumes);
269 processConsumesProduces(methodNode, "produces", produces);
andreafaa2c4b2015-11-16 13:48:39 -0800270 if (tag == null || ((method.toLowerCase().equals("post") || method.toLowerCase().equals("put"))
271 && !(tag.getParameters().size() > 1))) {
272 addResponses(methodNode, tag, false);
273 } else {
274 addResponses(methodNode, tag, true);
275 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700276
277 ObjectNode operations = pathMap.get(fullPath);
278 if (operations == null) {
279 operations = mapper.createObjectNode();
280 operations.set(method, methodNode);
281 pathMap.put(fullPath, operations);
282 } else {
283 operations.set(method, methodNode);
284 }
285 }
286
andreafaa2c4b2015-11-16 13:48:39 -0800287 private void addJsonSchemaDefinition(ObjectNode definitions, DocletTag tag) {
288 File definitionsDirectory = new File(srcDirectory + "/src/main/resources/definitions");
289 if (tag != null) {
290 tag.getParameters().stream().forEach(param -> {
291 try {
292 File config = new File(definitionsDirectory.getAbsolutePath() + "/"
293 + param + ".json");
294 String lines = Files.readLines(config, Charsets.UTF_8).stream().reduce((t, u) -> t + u).
295 get();
296 definitions.putPOJO(param, lines);
297 } catch (IOException e) {
298 e.printStackTrace();
299 }
300 });
301
302 }
303 }
304
Sahil Lele372d1f32015-07-31 15:01:41 -0700305 private void processConsumesProduces(ObjectNode methodNode, String type, String io) {
306 if (!io.equals("")) {
307 ArrayNode array = mapper.createArrayNode();
308 methodNode.set(type, array);
309 array.add(io);
310 }
311 }
312
313 private void addSummaryDescriptions(ObjectNode methodNode, String comment) {
314 String summary = "", description;
315 if (comment != null) {
316 if (comment.contains(".")) {
317 int periodIndex = comment.indexOf(".");
318 summary = comment.substring(0, periodIndex);
319 description = comment.length() > periodIndex + 1 ?
320 comment.substring(periodIndex + 1).trim() : "";
321 } else {
322 description = comment;
323 }
324 methodNode.put("summary", summary);
325 methodNode.put("description", description);
326 }
327 }
328
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700329 // Temporary solution to add responses to a method
Sahil Lele372d1f32015-07-31 15:01:41 -0700330 // TODO Provide annotations in the web resources for responses and parse them
andreafaa2c4b2015-11-16 13:48:39 -0800331 private void addResponses(ObjectNode methodNode, DocletTag tag, boolean responseJson) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700332 ObjectNode responses = mapper.createObjectNode();
333 methodNode.set("responses", responses);
334
335 ObjectNode success = mapper.createObjectNode();
336 success.put("description", "successful operation");
337 responses.set("200", success);
andreafaa2c4b2015-11-16 13:48:39 -0800338 if (tag != null && responseJson) {
339 ObjectNode schema = mapper.createObjectNode();
340 tag.getParameters().stream().forEach(
341 param -> schema.put("$ref", "#/definitions/" + param));
342 success.set("schema", schema);
343 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700344
345 ObjectNode defaultObj = mapper.createObjectNode();
346 defaultObj.put("description", "Unexpected error");
347 responses.set("default", defaultObj);
348 }
349
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700350 // Checks if the annotations has a value of JSON and returns the string
351 // that Swagger requires
Sahil Lele372d1f32015-07-31 15:01:41 -0700352 private String getIOType(JavaAnnotation annotation) {
353 if (annotation.getNamedParameter("value").toString().equals(JSON)) {
354 return "application/json";
355 }
356 return "";
357 }
358
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700359 // If the annotation has a Path tag, returns the value with leading and
360 // trailing double quotes and slash removed.
Sahil Lele372d1f32015-07-31 15:01:41 -0700361 private String getPath(JavaAnnotation annotation) {
362 String path = annotation.getNamedParameter("value").toString();
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700363 return path == null ? null : path.replaceAll("(^[\\\"/]*|[/\\\"]*$)", "");
Sahil Lele372d1f32015-07-31 15:01:41 -0700364 }
365
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700366 // Processes parameters of javaMethod and enters the proper key-values into the methodNode
andreafaa2c4b2015-11-16 13:48:39 -0800367 private void processParameters(JavaMethod javaMethod, ObjectNode methodNode, String method, DocletTag tag) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700368 ArrayNode parameters = mapper.createArrayNode();
369 methodNode.set("parameters", parameters);
370 boolean required = true;
371
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700372 for (JavaParameter javaParameter : javaMethod.getParameters()) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700373 ObjectNode individualParameterNode = mapper.createObjectNode();
374 Optional<JavaAnnotation> optional = javaParameter.getAnnotations().stream().filter(
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700375 annotation -> annotation.getType().getName().equals(PATH_PARAM) ||
376 annotation.getType().getName().equals(QUERY_PARAM)).findAny();
Sahil Lele372d1f32015-07-31 15:01:41 -0700377 JavaAnnotation pathType = optional.isPresent() ? optional.get() : null;
378
379 String annotationName = javaParameter.getName();
380
381
382 if (pathType != null) { //the parameter is a path or query parameter
383 individualParameterNode.put("name",
andreafaa2c4b2015-11-16 13:48:39 -0800384 pathType.getNamedParameter("value")
385 .toString().replace("\"", ""));
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700386 if (pathType.getType().getName().equals(PATH_PARAM)) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700387 individualParameterNode.put("in", "path");
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700388 } else if (pathType.getType().getName().equals(QUERY_PARAM)) {
Sahil Lele372d1f32015-07-31 15:01:41 -0700389 individualParameterNode.put("in", "query");
390 }
391 individualParameterNode.put("type", getType(javaParameter.getType()));
392 } else { // the parameter is a body parameter
393 individualParameterNode.put("name", annotationName);
394 individualParameterNode.put("in", "body");
395
andreafaa2c4b2015-11-16 13:48:39 -0800396 // Adds the reference to the Json model for the input
397 // that goes in the post or put operation
398 if (tag != null && (method.toLowerCase().equals("post") ||
399 method.toLowerCase().equals("put"))) {
400 ObjectNode schema = mapper.createObjectNode();
401 tag.getParameters().stream().forEach(param -> {
402 schema.put("$ref", "#/definitions/" + param);
403 });
404 individualParameterNode.set("schema", schema);
405 }
Sahil Lele372d1f32015-07-31 15:01:41 -0700406 }
407 for (DocletTag p : javaMethod.getTagsByName("param")) {
408 if (p.getValue().contains(annotationName)) {
409 try {
410 String description = p.getValue().split(" ", 2)[1].trim();
411 if (description.contains("optional")) {
412 required = false;
413 }
414 individualParameterNode.put("description", description);
415 } catch (Exception e) {
416 e.printStackTrace();
417 }
418 }
419 }
420 individualParameterNode.put("required", required);
421 parameters.add(individualParameterNode);
422 }
423 }
424
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700425 // Returns the Swagger specified strings for the type of a parameter
Sahil Lele372d1f32015-07-31 15:01:41 -0700426 private String getType(JavaType javaType) {
427 String type = javaType.getFullyQualifiedName();
428 String value;
429 if (type.equals(String.class.getName())) {
430 value = "string";
431 } else if (type.equals("int")) {
432 value = "integer";
433 } else if (type.equals(boolean.class.getName())) {
434 value = "boolean";
435 } else if (type.equals(long.class.getName())) {
436 value = "number";
437 } else {
438 value = "";
439 }
440 return value;
441 }
442
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700443 // Writes the swagger.json file using the supplied JSON root.
444 private void genCatalog(ObjectNode root) {
445 File swaggerCfg = new File(dstDirectory, JSON_FILE);
446 if (dstDirectory.exists() || dstDirectory.mkdirs()) {
447 try (FileWriter fw = new FileWriter(swaggerCfg);
448 PrintWriter pw = new PrintWriter(fw)) {
449 pw.println(root.toString());
450 } catch (IOException e) {
451 getLog().warn("Unable to write " + JSON_FILE);
452 }
453 } else {
454 getLog().warn("Unable to create " + dstDirectory);
Sahil Lele372d1f32015-07-31 15:01:41 -0700455 }
456 }
457
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700458 // Generates the registrator Java component.
459 private void genRegistrator() {
460 File dir = new File(dstDirectory, GEN_SRC);
461 File reg = new File(dir, apiPackage.replaceAll("\\.", "/") + "/ApiDocRegistrator.java");
462 File pkg = reg.getParentFile();
463 if (pkg.exists() || pkg.mkdirs()) {
464 try {
465 String src = new String(ByteStreams.toByteArray(getClass().getResourceAsStream(REG_SRC)));
466 src = src.replace("${api.package}", apiPackage)
467 .replace("${web.context}", webContext)
468 .replace("${api.title}", apiTitle)
469 .replace("${api.description}", apiTitle);
470 Files.write(src.getBytes(), reg);
471 } catch (IOException e) {
472 getLog().warn("Unable to write " + reg);
473 }
474 } else {
475 getLog().warn("Unable to create " + reg);
476 }
477 }
478
479 // Returns "nickname" based on method and path for a REST method
Sahil Lele372d1f32015-07-31 15:01:41 -0700480 private String setNickname(String method, String path) {
481 if (!path.equals("")) {
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700482 return (method + path.replace('/', '_').replace("{", "").replace("}", "")).toLowerCase();
Sahil Lele372d1f32015-07-31 15:01:41 -0700483 } else {
484 return method.toLowerCase();
485 }
486 }
Thomas Vachuska0fa2aa12015-08-18 12:53:04 -0700487
488 private String shortText(String comment) {
489 int i = comment.indexOf('.');
490 return i > 0 ? comment.substring(0, i) : comment;
491 }
492
Sahil Lele372d1f32015-07-31 15:01:41 -0700493}