1 package ip.gui.frames;
2
3 /**
4 * GPL code by DocJava, Inc.
5 * User: lyon
6 * Date: Mar 5, 2003
7 * Time: 5:42:00 PM
8 *
9 */
10 public interface ShortImageInterface {
11 short[][] getR();
12
13 void setR(short[][] r);
14
15 short[][] getG();
16
17 void setG(short[][] g);
18
19 short[][] getB();
20
21 void setB(short[][] b);
22 }
23