Package com.thoughtworks.qdox.model
Interface DocletTag
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
DefaultDocletTag
- Version:
- $Revision$
- Author:
- Joe Walnes, Aslak Hellesøy
-
Method Summary
Modifier and TypeMethodDescriptionint
getName()
getNamedParameter
(String key) String[]
getValue()
-
Method Details
-
getName
String getName()- Returns:
- the tag name
-
getValue
String getValue()- Returns:
- the full tag-value
-
getParameters
String[] getParameters()- Returns:
- an array of whitespace-separatedtag parameters
-
getNamedParameter
- Parameters:
key
- name of a named-parameter- Returns:
- the corresponding value, or null if no such named-parameter was present
-
getNamedParameterMap
Map getNamedParameterMap()- Returns:
- a Map containing all the named-parameters
-
getLineNumber
int getLineNumber()- Returns:
- the line-number where the tag occurred
-
getContext
AbstractBaseJavaEntity getContext()- Returns:
- the language element to which this tag applies
- Since:
- 1.4
-