Examples of parameterComment()


Examples of com.sun.javadoc.ParamTag.parameterComment()

      // parameter which matches this field.
      for (int t = 0; t < parameterTags.length; t += 1) {
        ParamTag tag = parameterTags [t];
        String name = tag.parameterName ();
        if (parameterName.equals (name)) {
          return tag.parameterComment ();
        }
      }
    }

    if (defaultComment == null) {
View Full Code Here

Examples of com.sun.javadoc.ParamTag.parameterComment()

                                paramTag = tag;
                            }
                        }
                        mOut.println("<DD><CODE>" + parameter.name() + "</CODE> - ");
                        if (paramTag != null) {
                            if (!paramTag.parameterComment().isEmpty()) {
                                printInlineTags(paramTag.inlineTags(), classDoc);
                            } else {
                                System.out.println("No description in @param tag for " + parameter.name() + " in " + classDoc.name() + "." + methodDoc.name());
                            }
                        } else {
View Full Code Here

Examples of com.sun.javadoc.ParamTag.parameterComment()

                 */
                final ParamTag paramTag = paramTags[i];

                final ParamDocType paramDocType = new ParamDocType();
                paramDocType.setParamName(paramTag.parameterName());
                paramDocType.setCommentText(paramTag.parameterComment());
                docProcessor.processParamTag(paramTag, parameter, paramDocType);

                AnnotationDesc[] annotations = parameter.annotations();
                if (annotations != null) {
                    for (AnnotationDesc annotationDesc : annotations) {
View Full Code Here

Examples of com.sun.javadoc.ParamTag.parameterComment()

                 */
                final ParamTag paramTag = paramTags[i];

                final ParamDocType paramDocType = new ParamDocType();
                paramDocType.setParamName(paramTag.parameterName());
                paramDocType.setCommentText(paramTag.parameterComment());
                docProcessor.processParamTag(paramTag, parameter, paramDocType);

                final AnnotationDesc[] annotations = parameter.annotations();
                if (annotations != null) {
                    for (final AnnotationDesc annotationDesc : annotations) {
View Full Code Here

Examples of com.sun.javadoc.ParamTag.parameterComment()

                 */
                final ParamTag paramTag = paramTags[i];
               
                final ParamDocType paramDocType = new ParamDocType();
                paramDocType.setParamName( paramTag.parameterName() );
                paramDocType.setCommentText( paramTag.parameterComment() );
                docProcessor.processParamTag( paramTag, parameter, paramDocType );
               
                AnnotationDesc[] annotations = parameter.annotations();
                if ( annotations != null  ) {
                    for ( AnnotationDesc annotationDesc : annotations ) {
View Full Code Here

Examples of com.sun.javadoc.ParamTag.parameterComment()

                 */
                final ParamTag paramTag = paramTags[i];
               
                final ParamDocType paramDocType = new ParamDocType();
                paramDocType.setParamName( paramTag.parameterName() );
                paramDocType.setCommentText( paramTag.parameterComment() );
                docProcessor.processParamTag( paramTag, parameter, paramDocType );
               
                AnnotationDesc[] annotations = parameter.annotations();
                if ( annotations != null  ) {
                    for ( AnnotationDesc annotationDesc : annotations ) {
View Full Code Here

Examples of com.sun.javadoc.Parameter.parameterComment()

                buf.append(comment).append("\n\n");
            }
            for (ParamTag p : params) {
                buf.append(
                        "* *" + p.parameterName() + "*: "
                                + p.parameterComment()).append("\n");
            }
            if (m instanceof MethodDoc) {
                MethodDoc md = (MethodDoc) m;
                buf.append("\n*Returns:* ")
                        .append(md.returnType().qualifiedTypeName())
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.