Package org.geotools.xsd
Interface EncoderConfiguration
-
public interface EncoderConfigurationUsed to configure an instance oforg.geotools.xml.Writer.Implementations supply a series of
Encoderimplementations (typically one for each type of object in your model that must be encoded.Encoder implementations are supplied by registering them with the supplied container.
class MyEncoderConfiguration implements EncoderConfiguration { void configure(MutablePicoContainer container) { container.registerComponentImplementation(FooEncoder.class); container.registerComponentImplementation(BarEncoder.class); ... } }- Author:
- Justin Deoliveira, The Open Planning Project
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfgiure(MutablePicoContainer container)Populates the container with implementations ofEncoder.
-
-
-
Method Detail
-
confgiure
void confgiure(MutablePicoContainer container)
Populates the container with implementations ofEncoder.- Parameters:
container- The container used to store encoder implementations.
-
-