1 package org.catacomb.interlish.structure;
2
3
4 public interface FrameShowable {
5
6 int[] getSize();
7
8 int[] getLocation();
9
10 void setLocation(int x, int y);
11
12 void pack();
13
14 void show();
15
16 void hide();
17
18 void toFront();
19
20 }