Revision 4272 org.gvsig.raster.wmts/trunk/org.gvsig.raster.wmts/org.gvsig.raster.wmts.io/src/main/java/org/gvsig/raster/wmts/io/WMTSDataParameters.java

View differences:

WMTSDataParameters.java
23 23
package org.gvsig.raster.wmts.io;
24 24

  
25 25
import java.awt.geom.Rectangle2D;
26
import java.net.URI;
26 27

  
27 28
import org.cresques.cts.IProjection;
29

  
28 30
import org.gvsig.compat.net.ICancellable;
29 31
import org.gvsig.fmap.dal.coverage.store.parameter.RemoteStoreParameters;
30 32
import org.gvsig.raster.wmts.ogc.WMTSClient;
......
49 51
	public static final String      FIELD_EXTENT          = "extent";
50 52
	public static final String      FIELD_DIMENSION       = "dimension";
51 53
	public static final String      FIELD_DIMENSION_VALUE = "selected_dimension_value";
52
	
54

  
53 55
	/**
54 56
	 * Gets the selected dimension
55 57
	 * @return
56 58
	 */
57 59
	public String getDimension();
58
	
60

  
59 61
	/**
60 62
	 * Sets the selected dimension
61 63
	 * @param dimension
62 64
	 */
63 65
	public void setDimension(String dimension);
64
	
66

  
65 67
	/**
66 68
	 * Gets the value for the selected dimension
67 69
	 * @return
68 70
	 */
69 71
	public String getDimensionSelectedValue();
70
	
72

  
71 73
	/**
72 74
	 * Sets the value for the selected dimension
73 75
	 * @param dimension
74 76
	 */
75 77
	public void setDimensionSelectedValue(String dimension);
76
	
78

  
77 79
	/**
78 80
	 * Sets the style selected
79 81
	 * @param layer
80 82
	 */
81 83
	public void setStyle(WMTSStyle layer);
82
	
84

  
83 85
	/**
84 86
	 * Gets the style
85 87
	 * @return
86 88
	 */
87 89
	public WMTSStyle getStyle();
88
	
90

  
89 91
	/**
90 92
	 * Gets the image format
91 93
	 * @return Format
......
97 99
	 * @param format
98 100
	 */
99 101
	public void setImageFormat(String format);
100
	
102

  
101 103
	/**
102 104
	 * Gets the format of the info by point
103 105
	 * @return
......
108 110
	 * Sets the format of the info by point
109 111
	 */
110 112
	public void setInfoFormat(String format);
111
	
113

  
112 114
	/**
113 115
	 * Sets the layer selected
114 116
	 * @param layer
115 117
	 */
116 118
	public void setLayer(WMTSLayer layer);
117
	
119

  
118 120
	/**
119 121
	 * Gets the layer
120 122
	 * @return
121 123
	 */
122 124
	public WMTSLayer getLayer();
123
	
125

  
124 126
	/**
125 127
	 * Devuelve el SRS.
126 128
	 * @return SRS.
127 129
	 */
128 130
	public String getSRSCode();
129
	
131

  
130 132
	public void setSRS(String m_srs);
131
	
133

  
132 134
	public void setSRS(IProjection srs);
133 135

  
134 136
	/**
......
136 138
	 * @return
137 139
	 */
138 140
	public IProjection getSRS();
139
	
141

  
140 142
	/**
141 143
	 * Returns true if the layer is projected
142 144
	 * @return
143 145
	 */
144 146
	public boolean isProjected();
145
	
147

  
146 148
	public String getSRSID();
147 149

  
148 150
	public void setSRSID(String srsid);
149
	
151

  
150 152
	/**
151 153
	 * Returns the current selected SRS.
152 154
	 * @return
153 155
	 */
154 156
	public String getEPSG(String value);
155
	
157

  
156 158
	public String getName();
157 159

  
158 160
	public void setName(String name);
159
	
161

  
160 162
	public void setCancellable(ICancellable cancel);
161
	
163

  
162 164
	public ICancellable getCancellable();
163
	
165

  
164 166
	public boolean isOverridingHost();
165
	
167

  
166 168
	public void setOverrideHost(boolean over);
167 169
	/**
168
	 * Assigns the extent. 
170
	 * Assigns the extent.
169 171
	 * When a provider is initialized this will need to know what is the extent before the request.
170
	 * 
172
	 *
171 173
	 * @param bBox
172 174
	 */
173 175
	public void setExtent(Rectangle2D bBox);
174
	
176

  
175 177
	/**
176 178
	 * Sets the width
177 179
	 * When a provider is initialized this will need to know what is the width before the request.
178 180
	 * @param w
179 181
	 */
180 182
	public void setWidth(int w);
181
	
183

  
182 184
	/**
183 185
	 * Sets the height
184 186
	 * When a provider is initialized this will need to know what is the height before the request.
185 187
	 * @param h
186 188
	 */
187 189
	public void setHeight(int h);
188
	
190

  
189 191
	/**
190 192
	 * Gets the bounding box
191 193
	 * @return
192 194
	 */
193 195
	public Rectangle2D getExtent();
194
	
196

  
195 197
	/**
196 198
	 * Gets the width
197 199
	 * @return
198 200
	 */
199 201
	public int getWidth();
200
	
202

  
201 203
	/**
202 204
	 * Gets the height
203 205
	 * @return
204 206
	 */
205 207
	public int getHeight();
206
	
208

  
207 209
	public boolean isSizeFixed();
208 210

  
209
	public void setURI(String params);
211
	public void setURI(URI uri);
210 212

  
211
	public String getURI();
212
	
213
	public URI getURI();
214

  
213 215
	public WMTSClient getOGCClient();
214
	
216

  
215 217
	public void setOGCClient(WMTSClient ogcClient);
216 218
}

Also available in: Unified diff