01: package com.esri.sde.sdk.client;
02:
03: import com.esri.sde.sdk.pe.PeProjectedCS;
04:
05: public class SeCoordinateReference {
06:
07: public void setCoordSysByDescription(String s) {
08: }
09:
10: public SeExtent getXYEnvelope() throws SeException {
11: return null;
12: }
13:
14: public String getCoordSysDescription() {
15: return null;
16: }
17:
18: public void setXYByEnvelope(SeExtent s) {
19: }
20:
21: public double getXYUnits() {
22: return 0;
23: }
24:
25: public void setXY(int i, int j, int k) {
26: }
27:
28: public String getProjectionDescription() {
29: return null;
30: }
31: }
|