01: package com.esri.sde.sdk.client;
02:
03: import java.awt.Dimension;
04:
05: public class SeRasterAttr {
06:
07: public int getPixelType() {
08: return -1;
09: }
10:
11: public int getTileHeight() {
12: return -1;
13: }
14:
15: public int getTileWidth() {
16: return -1;
17: }
18:
19: public SeRasterBand[] getBands() throws SeException {
20: return null;
21: }
22:
23: public int getMaxLevel() {
24: return -1;
25: }
26:
27: public boolean skipLevelOne() {
28: return false;
29: }
30:
31: public SeExtent getExtentByLevel(int i) throws SeException {
32: return null;
33: }
34:
35: public int getImageWidthByLevel(int i) {
36: return -1;
37: }
38:
39: public int getImageHeightByLevel(int i) {
40: return -1;
41: }
42:
43: public SDEPoint getImageOffsetByLevel(int i) {
44: return null;
45: }
46:
47: public int getTilesPerRowByLevel(int i) {
48: return -1;
49: }
50:
51: public int getTilesPerColByLevel(int i) {
52: return -1;
53: }
54:
55: public int getNumBands() {
56: return -1;
57: }
58:
59: public SeRasterBand getBandInfo(int i) {
60: return null;
61: }
62:
63: public SeObjectId getRasterColumnId() {
64: return null;
65: }
66:
67: public SeExtent getExtent() throws SeException {
68: return null;
69: }
70:
71: }
|