|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface EncoderConfiguration
Used to configure an instance of org.geotools.xml.Writer
.
Implementations supply a series of Encoder
implementations (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);
...
}
}
Method Summary | |
---|---|
void |
confgiure(MutablePicoContainer container)
Populates the container with implementations of Encoder . |
Method Detail |
---|
void confgiure(MutablePicoContainer container)
Encoder
.
container
- The container used to store encoder implementations.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |