Class ClassDocType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.ClassDocType
-
public class ClassDocType extends Object
The documentation type for classes.
Created on: Jun 12, 2008- Author:
- Martin Grotzke (martin.grotzke at freiheit.com)
-
-
Constructor Summary
Constructors Constructor Description ClassDocType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>getAny()StringgetClassName()StringgetCommentText()List<MethodDocType>getMethodDocs()voidsetClassName(String className)voidsetCommentText(String commentText)
-
-
-
Method Detail
-
getMethodDocs
public List<MethodDocType> getMethodDocs()
-
getCommentText
public String getCommentText()
- Returns:
- the commentText
-
setCommentText
public void setCommentText(String commentText)
- Parameters:
commentText- the commentText to set
-
getClassName
public String getClassName()
- Returns:
- the className
-
setClassName
public void setClassName(String className)
- Parameters:
className- the className to set
-
-