/* In order to allow true multiple output formats the container for the transmuters needs to
* be changed to allow many-to-many Class <-> Transmuter mappings.
*/
// Map Java types to transmuters
this.defaultTransmuters.put(Double.class, new DoubleTransmuter());
this.defaultTransmuters.put(MultiPolygon.class, new GML2MultiPolygonTransmuter());
this.defaultTransmuters.put(Polygon.class, new GML2PolygonTransmuter());
this.defaultTransmuters.put(Geometry.class, new GML2PolygonTransmuter());
this.defaultTransmuters.put(MultiPoint.class, new GML2MultiPointTransmuter());
this.defaultTransmuters.put(Point.class, new GML2PointTransmuter());