Package com.luciad.format.xml.bind
Interface ILcdXMLEncoderLibrary
public interface ILcdXMLEncoderLibrary
Interface for XML encoder libraries, responsible for configuring a
TLcdXMLEncoder
so that it can be used for marshalling Java object graphs to XML documents.
An ILcdXMLEncoderLibrary should configure the following information on an XML encoder:
- all marshallers which are provided by this library (see
ILcdXMLMarshaller) - (optionally) one or more list of Java interfaces which are allowed to be
exported to XML elements (see
TLcdXMLJavaClassResolver)
package documentation for a general overview
of the XML Binding Framework.- Since:
- 9.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidconfigureEncoder(TLcdXMLEncoder aEncoder) Configures the specifiedTLcdXMLEncoderso that it can be used for marshalling Java object graphs to XML documents for which this library was written.
-
Method Details
-
configureEncoder
Configures the specifiedTLcdXMLEncoderso that it can be used for marshalling Java object graphs to XML documents for which this library was written.- Parameters:
aEncoder- the XML encoder to be configured.
-