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 / JCCreateComponentEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-12-05  |  798 b   |  36 lines

  1. package jclass.table;
  2.  
  3. import java.awt.Component;
  4. import jclass.bwt.JCAWTEvent;
  5.  
  6. public class JCCreateComponentEvent extends JCAWTEvent {
  7.    public static final int CREATE_COMPONENT = 5001;
  8.    int row;
  9.    int column;
  10.    Component source;
  11.    Component component;
  12.  
  13.    public int getRow() {
  14.       return this.row;
  15.    }
  16.  
  17.    public int getColumn() {
  18.       return this.column;
  19.    }
  20.  
  21.    public Component getSourceComponent() {
  22.       return this.source;
  23.    }
  24.  
  25.    public void setComponent(Component var1) {
  26.       this.component = var1;
  27.    }
  28.  
  29.    public JCCreateComponentEvent(Table var1, int var2, int var3, Component var4) {
  30.       super(var1, 5001);
  31.       this.row = var2;
  32.       this.column = var3;
  33.       this.source = var4;
  34.    }
  35. }
  36.