xdoclet
public abstract class DocletSupport extends Object
Version: $Revision: 1.16 $
UNKNOWN: Oct 13, 2001
Field Summary | |
---|---|
protected static XTag | currentClassTag |
protected static XTag | currentFieldTag |
protected static XTag | currentMethodTag
The current Tag. |
Constructor Summary | |
---|---|
DocletSupport() |
Method Summary | |
---|---|
XClass | getCurrentClass()
Peeks and return the current class from top of currentClassStack stack.
|
static XTag | getCurrentClassTag()
Gets the CurrentClassTag attribute of the DocletSupport class
|
XConstructor | getCurrentConstructor()
Returns current constructor.
|
XField | getCurrentField()
Returns current field.
|
static XTag | getCurrentFieldTag()
Gets the CurrentFieldTag attribute of the DocletSupport field
|
XMethod | getCurrentMethod()
Returns current method.
|
static XTag | getCurrentMethodTag()
Gets the CurrentMethodTag attribute of the DocletSupport class
|
XPackage | getCurrentPackage()
Returns current package.
|
static XTag | getCurrentTag()
This method is for backward compatiblity only. |
static boolean | isDocletGenerated(XClass clazz)
Returns true if the clazz generated by xdoclet. |
XClass | popCurrentClass()
Popes current class from top currentClassStack stack. |
XClass | pushCurrentClass(XClass clazz)
Pushes class clazz to top of currentClassStack stack, making it effectively the current class.
|
void | setCurrentClass(XClass clazz)
Sets current class to clazz by clearing currentClassStack stack and pushing clazz into top of it.
|
static void | setCurrentClassTag(XTag currentTag)
Sets the CurrentClassTag attribute of the DocletSupport class
|
void | setCurrentConstructor(XConstructor constructor)
Sets the CurrentConstructor attribute of the DocletSupport object
|
void | setCurrentField(XField field)
Sets the CurrentField attribute of the DocletSupport object
|
static void | setCurrentFieldTag(XTag currentTag)
Sets the CurrentFieldTag attribute of the DocletSupport field
|
void | setCurrentMethod(XMethod method)
Sets the CurrentMethod attribute of the DocletSupport object
|
static void | setCurrentMethodTag(XTag currentTag)
Sets the CurrentMethodTag attribute of the DocletSupport class
|
void | setCurrentPackage(XPackage pakkage)
Returns current package.
|
Returns: The CurrentClass value
See Also: setCurrentClass
Returns: The CurrentClassTag value
Returns: The CurrentConstructor value
See Also: setCurrentConstructor
Returns: The CurrentField value
See Also: setCurrentField
Returns: The CurrentFieldTag value
Returns: The CurrentMethod value
See Also: setCurrentMethod
Returns: The CurrentMethodTag value
Returns: The CurrentPackage value
See Also: setCurrentPackage
Returns: The CurrentTag value
Parameters: clazz Description of Parameter
Returns: The DocletGenerated value
Returns: Description of the Returned Value
See Also: getCurrentClass setCurrentClass pushCurrentClass
Parameters: clazz Description of Parameter
Returns: Description of the Returned Value
See Also: getCurrentClass setCurrentClass popCurrentClass
Parameters: clazz The new CurrentClass value
See Also: getCurrentClass
UNKNOWN:
Parameters: currentTag The new CurrentClassTag value
UNKNOWN:
Parameters: constructor The new CurrentConstructor value
UNKNOWN:
Parameters: field The new CurrentField value
UNKNOWN:
Parameters: currentTag The new CurrentFieldTag value
UNKNOWN:
Parameters: method The new CurrentMethod value
UNKNOWN:
Parameters: currentTag The new CurrentMethodTag value
UNKNOWN:
Parameters: pakkage The new CurrentPackage value
See Also: setCurrentPackage
UNKNOWN: