KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nightlabs > editor2d > request > EditorCreateRequest


1 /* *****************************************************************************
2  * NightLabs Editor2D - Graphical editor framework *
3  * Copyright (C) 2004-2005 NightLabs - http://NightLabs.org *
4  * Project author: Daniel Mazurek <Daniel.Mazurek [at] nightlabs [dot] org> *
5  * *
6  * This library is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU Lesser General Public *
8  * License as published by the Free Software Foundation; either *
9  * version 2.1 of the License, or (at your option) any later version. *
10  * *
11  * This library is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the *
18  * Free Software Foundation, Inc., *
19  * 51 Franklin St, Fifth Floor, *
20  * Boston, MA 02110-1301 USA *
21  * *
22  * Or get it online : *
23  * http://www.gnu.org/copyleft/lesser.html *
24  * *
25  * *
26  ******************************************************************************/

27
28 package org.nightlabs.editor2d.request;
29
30 import org.apache.log4j.Logger;
31 import org.eclipse.draw2d.Shape;
32 import org.eclipse.gef.requests.CreateRequest;
33
34 import org.nightlabs.editor2d.j2d.GeneralShape;
35
36
37 public class EditorCreateRequest
38 extends CreateRequest
39 implements EditorShapeRequest,
40                      EditorBoundsRequest
41 {
42   public static final Logger LOGGER = Logger.getLogger(EditorCreateRequest.class);
43   
44   public static final int BOUNDS_FIX_MODE = 1;
45   public static final int BOUNDS_UNFIX_MODE = 2;
46   
47   protected int mode = BOUNDS_UNFIX_MODE;
48   public int getMode() {
49     return mode;
50   }
51   public void setMode(int mode) {
52     this.mode = mode;
53   }
54   
55   protected GeneralShape gp;
56   public GeneralShape getGeneralShape() {
57     return gp;
58   }
59   public void setGeneralShape(GeneralShape gp) {
60     this.gp = gp;
61   }
62   
63   protected Shape shape;
64   public Shape getShape() {
65     return shape;
66   }
67   public void setShape(Shape shape) {
68     this.shape = shape;
69   }
70   
71   protected boolean useShape = false;
72   public boolean isUseShape() {
73     return useShape;
74   }
75   public void setUseShape(boolean useShape) {
76     this.useShape = useShape;
77   }
78   
79 // protected boolean ignoreSize = false;
80
// public boolean isIgnoreSize() {
81
// return ignoreSize;
82
// }
83
// public void setIgnoreSize(boolean ignoreSize) {
84
// this.ignoreSize = ignoreSize;
85
// }
86

87   /**
88    *
89    */

90   public EditorCreateRequest() {
91     super();
92   }
93
94   /**
95    * @param type
96    */

97   public EditorCreateRequest(Object JavaDoc type) {
98     super(type);
99   }
100   
101 }
102
Popular Tags