Package com.thoughtworks.qdox.model.impl
Class DefaultDocletTagFactory
- java.lang.Object
-
- com.thoughtworks.qdox.model.impl.DefaultDocletTagFactory
-
- All Implemented Interfaces:
DocletTagFactory
,java.io.Serializable
public class DefaultDocletTagFactory extends java.lang.Object implements DocletTagFactory
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultDocletTagFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DocletTag
createDocletTag(java.lang.String tag, java.lang.String text)
DocletTag
createDocletTag(java.lang.String tag, java.lang.String text, JavaAnnotatedElement context, int lineNumber)
-
-
-
Method Detail
-
createDocletTag
public DocletTag createDocletTag(java.lang.String tag, java.lang.String text, JavaAnnotatedElement context, int lineNumber)
- Specified by:
createDocletTag
in interfaceDocletTagFactory
- Parameters:
tag
- the tagtext
- the textcontext
- the contextlineNumber
- the line number- Returns:
- the doclet tag
-
createDocletTag
public DocletTag createDocletTag(java.lang.String tag, java.lang.String text)
- Specified by:
createDocletTag
in interfaceDocletTagFactory
- Parameters:
tag
- the tagtext
- the text- Returns:
- the doclet tag
-
-