KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > nightlabs > editor2d > config > QuickOptionsConfigModule


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

26 package org.nightlabs.editor2d.config;
27
28 import org.nightlabs.config.ConfigModule;
29
30 /**
31  * <p> Author: Daniel.Mazurek[AT]NightLabs[DOT]de </p>
32  */

33 public class QuickOptionsConfigModule
34 extends ConfigModule
35 {
36
37     /**
38      *
39      */

40     public QuickOptionsConfigModule() {
41         super();
42     }
43
44     public static final int DEFAULT_MOVE_TRANSLATION = 25;
45     public static final int DEFAULT_CLONE_DISTANCE = 25;
46     
47     protected int moveTranslationX = DEFAULT_MOVE_TRANSLATION;
48     public int getMoveTranslationX() {
49         return moveTranslationX;
50     }
51     public void setMoveTranslationX(int moveTranslationX) {
52         this.moveTranslationX = moveTranslationX;
53         setChanged();
54     }
55     
56     protected int moveTranslationY = DEFAULT_MOVE_TRANSLATION;
57     public int getMoveTranslationY() {
58         return moveTranslationY;
59     }
60     public void setMoveTranslationY(int moveTranslationY) {
61         this.moveTranslationY = moveTranslationY;
62         setChanged();
63     }
64     
65     protected int cloneDistanceX = DEFAULT_CLONE_DISTANCE;
66     public int getCloneDistanceX() {
67         return cloneDistanceX;
68     }
69     public void setCloneDistanceX(int cloneDistanceX) {
70         this.cloneDistanceX = cloneDistanceX;
71         setChanged();
72     }
73     
74     protected int cloneDistanceY = DEFAULT_CLONE_DISTANCE;
75     public int getCloneDistanceY() {
76         return cloneDistanceY;
77     }
78     public void setCloneDistanceY(int cloneDistanceY) {
79         this.cloneDistanceY = cloneDistanceY;
80         setChanged();
81     }
82     
83     public void init()
84     {
85         
86     }
87 }
88
Popular Tags