home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / webeq3 / array / CellInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-05-24  |  843 b   |  30 lines

  1. package webeq3.array;
  2.  
  3. import webeq3.constants.ArrayConstants;
  4.  
  5. public class CellInfo implements ArrayConstants {
  6.    public int rspan = 1;
  7.    public int cspan = 1;
  8.    // $FF: renamed from: ra int
  9.    public int field_0 = 0;
  10.    // $FF: renamed from: ca int
  11.    public int field_1 = 0;
  12.    public int ascent = 0;
  13.    public int descent = 0;
  14.    public int height = 0;
  15.    public int width = 0;
  16.    public int top = 0;
  17.    public int left = 0;
  18.    public boolean occupied = false;
  19.    public boolean draw_rSep = true;
  20.    public boolean draw_cSep = true;
  21.  
  22.    public int getHeight() {
  23.       return this.height;
  24.    }
  25.  
  26.    public int getWidth() {
  27.       return this.width;
  28.    }
  29. }
  30.