Class WadlParamType
- java.lang.Object
-
- org.glassfish.jersey.server.wadl.internal.generators.resourcedoc.model.WadlParamType
-
public class WadlParamType extends java.lang.Object
The documentation type for wadl params.
Created on: Jun 12, 2008
-
-
Constructor Summary
Constructors Constructor Description WadlParamType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDoc()
java.lang.String
getName()
java.lang.String
getStyle()
javax.xml.namespace.QName
getType()
void
setDoc(java.lang.String commentText)
void
setName(java.lang.String paramName)
void
setStyle(java.lang.String style)
void
setType(javax.xml.namespace.QName type)
-
-
-
Method Detail
-
getDoc
public java.lang.String getDoc()
- Returns:
- the commentText
-
setDoc
public void setDoc(java.lang.String commentText)
- Parameters:
commentText
- the commentText to set
-
getName
public java.lang.String getName()
- Returns:
- the className
-
setName
public void setName(java.lang.String paramName)
- Parameters:
paramName
- the className to set
-
getStyle
public java.lang.String getStyle()
- Returns:
- the style
-
setStyle
public void setStyle(java.lang.String style)
- Parameters:
style
- the style to set
-
getType
public javax.xml.namespace.QName getType()
- Returns:
- the type
-
setType
public void setType(javax.xml.namespace.QName type)
- Parameters:
type
- the type to set
-
-