Revision 4273

View differences:

org.gvsig.raster.wms/trunk/org.gvsig.raster.wms/org.gvsig.raster.wms.io/src/main/java/org/gvsig/raster/wms/io/WMSProvider.java
141 141

  
142 142
	/**
143 143
	 * Constructor. Abre el dataset.
144
	 * @param proj Proyecci?n
145
	 * @param fName Nombre del fichero
146 144
	 * @throws OpenException
147 145
	 * @throws NotSupportedExtensionException
148 146
     * @deprecated use {@link #WMSProvider(URI)}, this constructor will be removed in gvSIG 2.5
......
166 164
        }
167 165
    }
168 166

  
169
    /**
170
     * Constructor. Abre el dataset.
171
     * @param fName Nombre del fichero
172
     * @throws OpenException
173
     * @throws NotSupportedExtensionException
174
     * @deprecated use {@link #WMSProvider(URI)}, this constructor will be removed in gvSIG 2.5
175
     */
176 167
    public WMSProvider(URI uri) throws InitializeException {
177 168
        super(uri);
178
        logger.info("Deprecated use of ErmapperProvider constructor");
179 169
        WMSDataParameters p = new WMSDataParametersImpl();
180 170
        p.setURI(uri);
181 171
        super.init(
......
186 176
        init(p, null);
187 177
    }
188 178

  
179
    /**
180
     * Constructor. Abre el dataset.
181
     * @param fName Nombre del fichero
182
     * @throws OpenException
183
     * @throws NotSupportedExtensionException
184
     * @deprecated use {@link #WMSProvider(URI)}, this constructor will be removed in gvSIG 2.5
185
     */
189 186
	public WMSProvider(WMSDataParameters params,
190 187
			DataStoreProviderServices storeServices) throws InitializeException {
191 188
		super(params, storeServices, ToolsLocator.getDynObjectManager()

Also available in: Unified diff