Interface XMLMapping
- All Known Implementing Classes:
BartAdminXMLMapping, BartXMLMapping, XMLMappingList
public interface XMLMapping
This
Java interface defines the mapping between XML tags and
Java classes; The Java classes returned through this mapping must
have a default constructor.-
Method Summary
Modifier and TypeMethodDescriptionClass<?> getClass(String nsUri, String tag, XMLAttributes atts) Returns theJava classfor a specifiedXML tagand its attributes in a namespace.
-
Method Details
-
getClass
Returns theJava classfor a specifiedXML tagand its attributes in a namespace.- Parameters:
nsUri- The unique resource identifier of the namespace of the XML tagtag- The local part of the XML tagatts- The attributes of the XML tag- Returns:
- A
Java classwith a default constructor - Throws:
IgnorableTagException- when the XML tag can be safely ignored
-