Exemplo n.º 1
0
 @Override
 public String getVersion() {
   JavaDoc.JavaDocTagList tags = this.webMethod.getJavaDoc().get("version");
   return tags == null ? null : tags.toString();
 }
Exemplo n.º 2
0
 @Override
 public String getSince() {
   JavaDoc.JavaDocTagList tags = this.webMethod.getJavaDoc().get("since");
   return tags == null ? null : tags.toString();
 }