home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- import java.util.EventObject;
-
- public class LayoutGeneratorEvent extends EventObject {
- public static final int GEN_STARTED = 1000;
- public static final int GEN_ENDED = 1001;
- public static final int GEN_OBJECT_STARTED = 1002;
- public static final int GEN_OBJECT_ENDED = 1003;
- private DefAbstract _currDefAbstract;
- private int _type;
-
- LayoutGeneratorEvent(Object layoutGenerator, int type, DefAbstract currDefAbstract) {
- super(layoutGenerator);
- this._type = type;
- this._currDefAbstract = currDefAbstract;
- }
-
- public int getType() {
- return this._type;
- }
-
- public DefAbstract getCurrDefAbstract() {
- return this._currDefAbstract;
- }
- }
-