home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Components / Microsoft ASP / _SETUP.1 / ASPWizard.jar / asp / wizard / def / LayoutGeneratorEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-11-20  |  994 b   |  27 lines

  1. package asp.wizard.def;
  2.  
  3. import java.util.EventObject;
  4.  
  5. public class LayoutGeneratorEvent extends EventObject {
  6.    public static final int GEN_STARTED = 1000;
  7.    public static final int GEN_ENDED = 1001;
  8.    public static final int GEN_OBJECT_STARTED = 1002;
  9.    public static final int GEN_OBJECT_ENDED = 1003;
  10.    private DefAbstract _currDefAbstract;
  11.    private int _type;
  12.  
  13.    LayoutGeneratorEvent(Object layoutGenerator, int type, DefAbstract currDefAbstract) {
  14.       super(layoutGenerator);
  15.       this._type = type;
  16.       this._currDefAbstract = currDefAbstract;
  17.    }
  18.  
  19.    public int getType() {
  20.       return this._type;
  21.    }
  22.  
  23.    public DefAbstract getCurrDefAbstract() {
  24.       return this._currDefAbstract;
  25.    }
  26. }
  27.