01: package com.esri.sde.sdk.client;
02:
03: public class SeShape {
04:
05: public static int TYPE_NIL = -1;
06: public static int TYPE_POINT = 0;
07: public static int TYPE_MULTI_POINT = 1;
08: public static int TYPE_LINE = 2;
09: public static int TYPE_SIMPLE_LINE = 3;
10: public static int TYPE_MULTI_LINE = 4;
11: public static int TYPE_MULTI_SIMPLE_LINE = 5;
12: public static int TYPE_POLYGON = 6;
13: public static int TYPE_MULTI_POLYGON = 7;
14:
15: public SeShape() {
16: }
17:
18: public SeShape(SeCoordinateReference s) throws SeException {
19: }
20:
21: public boolean isNil() {
22: return false;
23: }
24:
25: public double[][][] getAllCoords() {
26: return null;
27: }
28:
29: public void generatePoint(int i, SDEPoint[] p) throws SeException {
30: }
31:
32: public void generateLine(int i, int j, int[] k, SDEPoint[] p)
33: throws SeException {
34: }
35:
36: public void generatePolygon(int i, int j, int[] k, SDEPoint[] p)
37: throws SeException {
38: }
39:
40: public void generateRectangle(SeExtent x) throws SeException {
41: }
42:
43: public int getType() {
44: return 0;
45: }
46:
47: public SeObjectId getFeatureId() throws SeException {
48: return null;
49: }
50:
51: public int getNumOfPoints() {
52: return 0;
53: }
54:
55: public void generateSimpleLine(int numPts, int numParts,
56: int[] partOffsets, SDEPoint[] ptArray) {
57: }
58:
59: }
|