Revision 41853 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.mapcontext/org.gvsig.fmap.mapcontext.api/src/main/java/org/gvsig/fmap/mapcontext/layers/FLyrDefault.java

View differences:

FLyrDefault.java
94 94

  
95 95
	private LayerChangeSupport layerChangeSupport = new LayerChangeSupport();
96 96

  
97
        /**
98
         * Flag to set the layer as a temporary layer.
99
         */
100
        private boolean temporary;
101
        
97 102
	/**
98 103
	 * Path to the upper layer which this layer belongs.
99 104
	 *
......
785 790
	 * @see com.iver.cit.gvsig.fmap.layers.FLayer#getTocStatusImage()
786 791
	 */
787 792
	public Image getTocStatusImage() {
788
		return tocStatusImage;
793
            return tocStatusImage;
789 794
	}
790 795

  
791 796
	/**
......
799 804
		this.tocStatusImage = tocStatusImage;
800 805
		logger.debug("setTocStatusImage " + tocStatusImage + " sobre capa " + this.getName());
801 806
	}
802
	/*
803
	 * (non-Javadoc)
804
	 * @see com.iver.cit.gvsig.fmap.layers.FLayer#newComposedLayer()
805
	 */
807

  
806 808
	public ComposedLayer newComposedLayer() {
807 809
		return null;
808 810
	}
809 811

  
810
	/*
811
	 * (non-Javadoc)
812
	 * @see com.iver.cit.gvsig.fmap.layers.FLayer#allowLinks()
813
	 */
814 812
	public boolean allowLinks()
815 813
	{
816 814
		return false;
817 815
	}
818 816

  
819
	/*
820
	 * (non-Javadoc)
821
	 * @see com.iver.cit.gvsig.fmap.layers.FLayer#getLinkProperties()
822
	 */
823 817
	public AbstractLinkProperties getLinkProperties()
824 818
	{
825 819
		return null;
826 820
	}
827 821

  
828
	/*
829
	 * (non-Javadoc)
830
	 * @see com.iver.cit.gvsig.fmap.layers.FLayer#getLink(java.awt.geom.Point2D, double)
831
	 */
832 822
	public URI[] getLink(Point2D point, double tolerance) throws ReadException{
833 823
		return null;
834 824
	}
835 825

  
836
	/**
837
	 * @see LayerChangeSupport#addLayerListener(LegendListener)
838
	 */
839 826
	public void addLegendListener(LegendListener listener) {
840 827
		layerChangeSupport.addLayerListener(listener);
841 828
	}
......
1056 1043
	public boolean hidesThisArea(Envelope area) {
1057 1044
		return false;
1058 1045
	}
1046
        
1047
        public boolean isTemporary() {
1048
            return this.temporary;
1049
        }
1050
        
1051
        public void setTemporary(boolean temporary) {
1052
            this.temporary = temporary;
1053
        }
1059 1054
}

Also available in: Unified diff