Revision 341

View differences:

trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/FLyrDefault.java
13 13
 * Implementaci?n de las caracter?sticas de alto nivel de las
14 14
 * capas: proyecci?n, visibilidad, activaci?n, nombre, ...
15 15
 */
16
public class FLyrDefault implements FLayer {
16
public abstract class FLyrDefault implements FLayer {
17 17
	PropertyChangeSupport lnkPropertyChangeSupport;
18 18

  
19 19
	/** Path de la capa en el arbol de capas */
trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/FLayer.java
12 12
/**
13 13
 * DOCUMENT ME!
14 14
 */
15
public interface FLayer extends Projected {
15
public interface FLayer extends Projected, LayerOperations {
16 16
    /**
17 17
     * Obtiene una representaci?n de la colecci?n de capas de forma recursiva
18 18
     *
trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/FLayers.java
232 232
    }
233 233

  
234 234
    /**
235
     * Obtiene una representaci?n de la colecci?n de capas de forma recursiva
236
     *
237
     * @return DOCUMENT ME!
238
     */
239
    public XMLEntity getProperties() {
240
        //TODO implementar bien
241
        return null;
242
    }
243

  
244
    /**
245 235
     * DOCUMENT ME!
246 236
     *
247 237
     * @param xe DOCUMENT ME!
......
370 360
            ((LayerCollectionListener) iter).layerMoved(event);
371 361
        }
372 362
    }
363

  
364
	/**
365
	 * @see com.iver.cit.gvsig.fmap.layers.LayerOperations#getLayerProperties()
366
	 */
367
	public XMLEntity getLayerProperties() {
368
		return null;
369
	}
373 370
}

Also available in: Unified diff