Package com.sun.xml.xsom
Interface XSAnnotation
-
- All Known Implementing Classes:
AnnotationImpl
public interface XSAnnotation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getAnnotation()
Obtains the application-parsed annotation.org.xml.sax.Locator
getLocator()
Returns a location information of the annotation.java.lang.Object
setAnnotation(java.lang.Object o)
Sets the value to be returned bygetAnnotation()
.
-
-
-
Method Detail
-
getAnnotation
java.lang.Object getAnnotation()
Obtains the application-parsed annotation.annotations are parsed by the user-specified
AnnotationParser
.- Returns:
- may return null
-
setAnnotation
java.lang.Object setAnnotation(java.lang.Object o)
Sets the value to be returned bygetAnnotation()
.- Parameters:
o
- can be null.- Returns:
- old value that was replaced by the
o
.
-
getLocator
org.xml.sax.Locator getLocator()
Returns a location information of the annotation.
-
-