Package com.luciad.format.xml.bind
Interface ILcdXMLDecoderLibrary
public interface ILcdXMLDecoderLibrary
Interface for XML decoder libraries, responsible for configuring a
TLcdXMLDecoder
so that it can be used for unmarshalling XML documents to Java object graphs.
An ILcdXMLDecoderLibrary
should configure the following information on an XML decoder:
- all unmarshallers which are provided by this library (see
ILcdXMLUnmarshaller
)
package documentation
for a general overview
of the XML Binding Framework.- Since:
- 9.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configureDecoder
(TLcdXMLDecoder aDecoder) Configures the specifiedTLcdXMLDecoder
so that it can be used for unmarshalling XML documents for which this library was written.
-
Method Details
-
configureDecoder
Configures the specifiedTLcdXMLDecoder
so that it can be used for unmarshalling XML documents for which this library was written.- Parameters:
aDecoder
- the XML decoder to be configured.
-