01: package com.esri.sde.sdk.client;
02:
03: public class SeLayer {
04:
05: public static/* GEOT-947 final*/int SE_NIL_TYPE_MASK = 0;
06: public static/* GEOT-947 final*/int SE_LINE_TYPE_MASK = 1;
07: public static/* GEOT-947 final*/int SE_POINT_TYPE_MASK = 2;
08: public static/* GEOT-947 final*/int SE_AREA_TYPE_MASK = 3;
09: public static/* GEOT-947 final*/int SE_MULTIPART_TYPE_MASK = 4;
10: public static/* GEOT-947 final*/int SE_SHAPE_ATTRIBUTE_FID = 5;
11: public static/* GEOT-947 final*/int SE_SIMPLE_LINE_TYPE_MASK = 6;
12: public static/* GEOT-947 final*/int TYPE_NIL = 7;
13: public static/* GEOT-947 final*/int TYPE_MULTI_MASK = 8;
14: public static/* GEOT-947 final*/int TYPE_LINE = 9;
15: public static/* GEOT-947 final*/int TYPE_POINT = 10;
16: public static/* GEOT-947 final*/int TYPE_POLYGON = 11;
17: public static/* GEOT-947 final*/int TYPE_SIMPLE_LINE = 12;
18: public static/* GEOT-947 final*/int TYPE_MULTI_SIMPLE_LINE = 13;
19: public static/* GEOT-947 final*/int TYPE_MULTI_LINE = 14;
20: public static/* GEOT-947 final*/int TYPE_MULTI_POLYGON = 15;
21: public static/* GEOT-947 final*/int TYPE_MULTI_POINT = 16;
22:
23: public SeLayer(SeConnection c, String s, String y)
24: throws SeException {
25: }
26:
27: public SeLayer(SeConnection c) throws SeException {
28: }
29:
30: public String getName() {
31: return null;
32: }
33:
34: public int getShapeTypes() {
35: return 0;
36: }
37:
38: public void setTableName(String s) {
39: }
40:
41: public void setSpatialColumnName(String s) {
42: }
43:
44: public void setShapeTypes(int i) {
45: }
46:
47: public void setGridSizes(int i, int j, int k) {
48: }
49:
50: public void setDescription(String s) {
51: }
52:
53: public void setExtent(SeExtent s) {
54: }
55:
56: public void setCoordRef(SeCoordinateReference s) {
57: }
58:
59: public void create(int i, int j) {
60: }
61:
62: public String getQualifiedName() throws SeException {
63: return null;
64: }
65:
66: public String getSpatialColumn() {
67: return null;
68: }
69:
70: public SeCoordinateReference getCoordRef() {
71: return null;
72: }
73:
74: public SeExtent getExtent() {
75: return null;
76: }
77:
78: public String getShapeAttributeName(int i) {
79: return null;
80: }
81:
82: public void setGridSizes(double a, double b, double c) {
83: }
84:
85: public void delete() throws SeException {
86: }
87:
88: public void setCreationKeyword(String s) {
89: }
90: }
|