01: package com.esri.sde.sdk.client;
02:
03: public class SeRegistration {
04:
05: public static/* GEOT-947 final*/int SE_REGISTRATION_ROW_ID_COLUMN_TYPE_SDE = 0;
06: public static/* GEOT-947 final*/int SE_REGISTRATION_ROW_ID_COLUMN_TYPE_USER = 1;
07: public static/* GEOT-947 final*/int SE_REGISTRATION_ROW_ID_COLUMN_TYPE_NONE = 2;
08:
09: public SeRegistration(SeConnection c, String s) {
10: }
11:
12: public String getRowIdColumnName() {
13: return null;
14: }
15:
16: public void setRowIdColumnName(String s) {
17: }
18:
19: public int getRowIdColumnType() throws SeException {
20: return -1;
21: }
22:
23: public void setRowIdColumnType(int i) {
24: }
25:
26: public void alter() {
27: }
28:
29: public String getTableName() {
30: return null;
31: }
32:
33: }
|