Class ParamDocType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.ParamDocType
-
public class ParamDocType extends java.lang.ObjectThe 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>annotationDocprivate java.util.List<java.lang.Object>anyprivate java.lang.StringcommentTextprivate java.lang.StringparamName
-
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.StringgetCommentText()java.lang.StringgetParamName()voidsetCommentText(java.lang.String commentText)voidsetParamName(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
-
-