home *** CD-ROM | disk | FTP | other *** search
- package jclass.table;
-
- import java.awt.Component;
- import jclass.bwt.JCAWTEvent;
-
- public class JCCreateComponentEvent extends JCAWTEvent {
- public static final int CREATE_COMPONENT = 5001;
- int row;
- int column;
- Component source;
- Component component;
-
- public int getRow() {
- return this.row;
- }
-
- public int getColumn() {
- return this.column;
- }
-
- public Component getSourceComponent() {
- return this.source;
- }
-
- public void setComponent(Component var1) {
- this.component = var1;
- }
-
- public JCCreateComponentEvent(Table var1, int var2, int var3, Component var4) {
- super(var1, 5001);
- this.row = var2;
- this.column = var3;
- this.source = var4;
- }
- }
-