Revision 6531 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/FLayer.java

View differences:

FLayer.java
137 137

  
138 138
	/**
139 139
	 * Devuelve true si la capa es visible.
140
	 * Es dependiente isAvialable @link isAvialable 
140 141
	 *
141 142
	 * @return visibilidad.
143
	 * 
144
	 * @see isAvialable()
145
	 * @see setAvialable()
146
	 * @see visibleRequired()
142 147
	 */
143 148
	boolean isVisible();
144 149

  
......
298 303
	public BufferedImage getCacheImageDrawnLayers();
299 304

  
300 305
	public void setCacheImageDrawnLayers(BufferedImage cacheImageDrawnLayers);
306

  
307
	/**
308
	 * @return set layer aviable or not.
309
	 */
310
	public void setAvailable(boolean aviable);
301 311
	
312
	/**
313
	 * @return true if this layer is aviable.
314
	 * 
315
	 * Default value is true.
316
	 */	
317
	public boolean isAvialable();
318
	
319
	/**
320
	 * Intenta recuperar una capa ante un posible error.
321
	 * Si tiene algun problema en la carga, marca
322
	 * el avialable a false y lanza una excepcion.
323
	 *
324
	 * @throws DriverIOException
325
	 */
326
	public void reload() throws DriverIOException;
327
	
328
	
329
	/**
330
	 * Devuelve true si la capa esta establecida como visible.
331
	 *
332
	 * @return visibilidad.
333
	 */
334
	boolean visibleRequired();
335

  
336
	/**
337
	 * Devuelve una cadena con informacion sobre la capa.
338
	 *
339
	 * @return visibilidad.
340
	 */
341
	public String getInfoString();
342

  
343

  
302 344
}

Also available in: Unified diff