Revision 354 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/layers/FLyrDefault.java

View differences:

FLyrDefault.java
3 3

  
4 4
import java.beans.PropertyChangeSupport;
5 5

  
6
import org.cresques.cts.ICoordTrans;
6 7
import org.cresques.cts.IProjection;
7 8

  
8 9
import com.iver.cit.gvsig.fmap.XMLEntity;
......
19 20
	private LayerPath layerPath = new LayerPath();
20 21
	private FLayers root=null;
21 22
	private String name;
23
	private IProjection projection;
22 24

  
23 25
	/**
24 26
	 * Las propiedades que se deben devolver aqu? son la propiedad selected y
......
100 102
	public void setRoot(FLayers root){
101 103
		this.root=root;
102 104
	}
105
	
106
	public void setProjection(IProjection proj){
107
		projection = proj;
108
	}
109
	/**
110
	 * @see org.cresques.geo.Projected#getProjection()
111
	 */
112
	public IProjection getProjection() {
113
		return projection;
114
	}
115
	/**
116
	 * @see org.cresques.geo.Projected#reProject(org.cresques.cts.ICoordTrans)
117
	 */
118
	public void reProject(ICoordTrans arg0) {
119
	}
103 120
}

Also available in: Unified diff