Class ParamDocType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.ParamDocType
-
public class ParamDocType extends java.lang.Object
The documentation type for params: method params, path params on a class etc.
Created on: Jun 12, 2008
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AnnotationDocType>
annotationDoc
private java.util.List<java.lang.Object>
any
private java.lang.String
commentText
private java.lang.String
paramName
-
Constructor Summary
Constructors Constructor Description ParamDocType()
ParamDocType(java.lang.String paramName, java.lang.String commentText)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AnnotationDocType>
getAnnotationDocs()
java.util.List<java.lang.Object>
getAny()
java.lang.String
getCommentText()
java.lang.String
getParamName()
void
setCommentText(java.lang.String commentText)
void
setParamName(java.lang.String paramName)
-
-
-
Field Detail
-
paramName
private java.lang.String paramName
-
commentText
private java.lang.String commentText
-
annotationDoc
protected java.util.List<AnnotationDocType> annotationDoc
-
any
private java.util.List<java.lang.Object> any
-
-
Method Detail
-
getAnnotationDocs
public java.util.List<AnnotationDocType> getAnnotationDocs()
-
getAny
public java.util.List<java.lang.Object> getAny()
-
getCommentText
public java.lang.String getCommentText()
- Returns:
- the commentText
-
setCommentText
public void setCommentText(java.lang.String commentText)
- Parameters:
commentText
- the commentText to set
-
getParamName
public java.lang.String getParamName()
- Returns:
- the className
-
setParamName
public void setParamName(java.lang.String paramName)
- Parameters:
paramName
- the className to set
-
-