Revision 4181 org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.io/src/main/java/org/gvsig/raster/wms/io/WMSDataParameters.java

View differences:

WMSDataParameters.java
23 23

  
24 24
import java.awt.Dimension;
25 25
import java.awt.geom.Rectangle2D;
26
import java.net.URI;
26 27
import java.util.List;
27 28
import java.util.Map;
28 29
import java.util.Vector;
......
39 40
	public void setLayerQuery(String string);
40 41

  
41 42
	public void setInfoLayerQuery(String string);
42
	
43

  
43 44
	/**
44 45
	 * Sets the info by point format
45 46
	 */
46 47
	public void setInfoFormat(String format);
47
	
48

  
48 49
	/**
49 50
	 * Gets the info by point format
50 51
	 * @return
......
57 58

  
58 59
	public void setWmsTransparency(boolean boolean1);
59 60

  
60
	public void setURI(String string);
61
	public void setURI(URI uri);
61 62

  
62 63
	public void setStyles(List<RemoteWMSStyle> styles);
63 64

  
......
80 81

  
81 82
	public void setFixedSize(Dimension dimension);
82 83

  
83
	public String getURI();
84
	public URI getURI();
84 85

  
85 86
	public String getInfoLayerQuery();
86 87

  
......
106 107
	 * @param onlineResources
107 108
	 */
108 109
	public String getOnlineResource(String operation);
109
	
110

  
110 111
	/**
111 112
	 * Gets the online resource map
112 113
	 *
......
126 127
	 * Sets the bounding box of the request
127 128
	 */
128 129
	public void setExtent(Rectangle2D bBox);
129
	
130

  
130 131
	/**
131 132
	 * Gets the bounding box of the request
132 133
	 * @return
......
140 141
	public void setOverrideHost(boolean b);
141 142

  
142 143
	public void setName(String title);
143
        
144

  
144 145
        public String getName();
145 146

  
146 147
	public int getWidth();
......
148 149
	public int getHeight();
149 150

  
150 151
	public ICancellable getCancellable();
151
	
152

  
152 153
	/**
153 154
	 * <p>Gets the behaviour of the parser with regards the axis order</p>
154
	 * 
155
	 *
155 156
	 * <p>Returns <code>true</code> if the WMS parser should assume that the
156 157
	 * order of the coordinates follows the XY axis order
157 158
	 * (the first coordinate corresponds to the horizontal X
158 159
	 * axis, while the second  coordinate corresponds to the
159 160
	 * vertical Y axis), regardless the protocol version and CRS in use.</p>
160
	 * 
161
	 *
161 162
	 * <p>Returns <code>false</code> if the WMS parser should decide the
162 163
	 * axis order based on the protocol version and the coordinate
163 164
	 * reference system (CRS) in use. In particular, if protocol
164 165
	 * version is >= 1.3.0, then the WMS parser assumes
165 166
	 * the axis order defined in the official EPSG registry for the
166 167
	 * CRS in use. For versions < 1.3.0, the XY axis order is assumed.</p>
167
	 * 
168
	 *
168 169
	 * <p>The default value is <code>false</code></p>.
169 170
	 * @see #setXyAxisOrder(boolean)
170 171
	 * @return
......
173 174

  
174 175
	/**
175 176
	 * <p>Sets the behaviour of the parser with regards the axis order.<p>
176
	 * 
177
	 *
177 178
	 * <p>If set to <code>true</code>, then the XY axis order
178 179
	 * is assumed for all the WMS
179 180
	 * protocol versions and coordinate reference systems.</p>
180
	 * 
181
	 *
181 182
	 * <p>If set to <code>false</code>
182 183
	 * then the WMS parser will decide the axis order based on
183 184
	 * the protocol version and the coordinate reference system (CRS)
......
185 186
	 * version is >= 1.3.0, then the WMS parser assumes
186 187
	 * the axis order defined in the official EPSG registry for the
187 188
	 * CRS in use. For versions < 1.3.0, the XY axis order is assumed.</p>
188
	 * 
189
	 * 
189
	 *
190
	 *
190 191
	 * @param assumeXY
191 192
	 * @see #isXyAxisOrder()
192 193
	 */

Also available in: Unified diff