home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / VCafe / JCLASS.BIN / KLG.JAR / jclass / table / JCValidateCellEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-12-05  |  1000 b   |  50 lines

  1. package jclass.table;
  2.  
  3. import jclass.bwt.JCAWTEvent;
  4.  
  5. public class JCValidateCellEvent extends JCAWTEvent {
  6.    public static final int VALIDATE_CELL = 5010;
  7.    int row;
  8.    int column;
  9.    boolean changed;
  10.    int datatype;
  11.    Object value;
  12.    boolean doit = true;
  13.  
  14.    public int getRow() {
  15.       return this.row;
  16.    }
  17.  
  18.    public int getColumn() {
  19.       return this.column;
  20.    }
  21.  
  22.    public boolean getChanged() {
  23.       return this.changed;
  24.    }
  25.  
  26.    public int getDataType() {
  27.       return this.datatype;
  28.    }
  29.  
  30.    public Object getValue() {
  31.       return this.value;
  32.    }
  33.  
  34.    public void setValue(Object var1) {
  35.       this.value = var1;
  36.    }
  37.  
  38.    public boolean getAllowValueChange() {
  39.       return this.doit;
  40.    }
  41.  
  42.    public void setAllowValueChange(boolean var1) {
  43.       this.doit = var1;
  44.    }
  45.  
  46.    public JCValidateCellEvent(Table var1) {
  47.       super(var1, 5010);
  48.    }
  49. }
  50.