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