home *** CD-ROM | disk | FTP | other *** search
- package webeq3.array;
-
- import webeq3.constants.ArrayConstants;
-
- public class CellInfo implements ArrayConstants {
- public int rspan = 1;
- public int cspan = 1;
- // $FF: renamed from: ra int
- public int field_0 = 0;
- // $FF: renamed from: ca int
- public int field_1 = 0;
- public int ascent = 0;
- public int descent = 0;
- public int height = 0;
- public int width = 0;
- public int top = 0;
- public int left = 0;
- public boolean occupied = false;
- public boolean draw_rSep = true;
- public boolean draw_cSep = true;
-
- public int getHeight() {
- return this.height;
- }
-
- public int getWidth() {
- return this.width;
- }
- }
-