01: /*
02: * Geotools2 - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002, Geotools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package org.geotools.gce.arcgrid;
18:
19: import java.util.Locale;
20:
21: import javax.imageio.ImageWriteParam;
22:
23: import org.geotools.coverage.grid.io.imageio.GeoToolsWriteParams;
24:
25: /**
26: * @author Simone Giannecchini
27: * @since 2.3.x
28: *
29: */
30: public class ArcGridWriteParams extends GeoToolsWriteParams {
31:
32: /**
33: * Default constructor.
34: */
35: public ArcGridWriteParams() {
36: super (new ImageWriteParam(Locale.getDefault()));
37: // allowed compression types
38: compressionTypes = null;
39: // default compression type
40: compressionType = null;
41: canWriteCompressed = false;
42: canWriteProgressive = false;
43: canWriteTiles = false;
44: canOffsetTiles = false;
45: controller = null;
46:
47: }
48:
49: }
|