01: package com.esri.sde.sdk.client;
02:
03: public class SeRasterTile {
04:
05: public SeObjectId getBandId() {
06: return null;
07: }
08:
09: public byte[] getBitMaskData() {
10: return null;
11: }
12:
13: public byte[] getPixels(byte[] b) {
14: return null;
15: }
16:
17: public int getNumPixels() {
18: return -1;
19: }
20:
21: public int getColumnIndex() {
22: return -1;
23: }
24:
25: public int getRowIndex() {
26: return -1;
27: }
28:
29: }
|