home *** CD-ROM | disk | FTP | other *** search
- package asp.wizard.def;
-
- import java.awt.Point;
-
- public class DefAbstract {
- public static final int TRUE = 0;
- public static final int FALSE = 1;
- private String _name;
- private Point _location = new Point(0, 0);
- private boolean _placed;
- private DefQuery _defQuery;
- private DefCollection _parent;
-
- public void setDefQuery(DefQuery defQuery) {
- this._defQuery = defQuery;
- }
-
- public DefQuery getDefQuery() {
- return this._defQuery;
- }
-
- public String getName() {
- return this._name;
- }
-
- public void setName(String name) {
- this._name = name;
- }
-
- public Point getLocation() {
- return new Point(this._location);
- }
-
- public void setLocation(Point pos) {
- this._location = new Point(pos);
- }
-
- public void setPlaced(boolean placed) {
- this._placed = placed;
- }
-
- public boolean getPlaced() {
- return this._placed;
- }
-
- public DefCollection getParent() {
- return this._parent;
- }
-
- public void setParent(DefCollection defCollection) {
- this._parent = defCollection;
- }
-
- public String getBaseName() {
- return "AbstractType";
- }
- }
-