1   /*
2    * Copyright 2004-2008 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.uruma.renderer;
17  
18  import org.eclipse.swt.graphics.Color;
19  import org.eclipse.swt.graphics.Image;
20  
21  /**
22   * {@link RendererSupportUtil} のテストのためのクラスです。<br />
23   * 
24   * @author y-komori
25   */
26  public class DestObject {
27      public String nonTargetField;
28  
29      public String stringField;
30  
31      public String textField;
32  
33      public int intField;
34  
35      public int[] intArrayField;
36  
37      public boolean booleanField;
38  
39      public Color colorField;
40  
41      public int swtConstField;
42  
43      public Image imageField;
44  
45      public int acceleratorField;
46  
47      public char charField;
48  
49      private String stringProperty;
50  
51      private String textProperty;
52  
53      private int intProperty;
54  
55      private int[] intArrayProperty;
56  
57      private boolean booleanProperty;
58  
59      private Color colorProperty;
60  
61      private int swtConstProperty;
62  
63      private Image imageProperty;
64  
65      private int acceleratorProperty;
66  
67      private char charProperty;
68  
69      public boolean getBooleanProperty() {
70          return this.booleanProperty;
71      }
72  
73      public void setBooleanProperty(final boolean booleanProperty) {
74          this.booleanProperty = booleanProperty;
75      }
76  
77      public Color getColorProperty() {
78          return this.colorProperty;
79      }
80  
81      public void setColorProperty(final Color colorProperty) {
82          this.colorProperty = colorProperty;
83      }
84  
85      public int getIntProperty() {
86          return this.intProperty;
87      }
88  
89      public void setIntProperty(final int intProperty) {
90          this.intProperty = intProperty;
91      }
92  
93      public String getStringProperty() {
94          return this.stringProperty;
95      }
96  
97      public void setStringProperty(final String stringProperty) {
98          this.stringProperty = stringProperty;
99      }
100 
101     public int getSwtConstProperty() {
102         return this.swtConstProperty;
103     }
104 
105     public void setSwtConstProperty(final int swtConstProperty) {
106         this.swtConstProperty = swtConstProperty;
107     }
108 
109     public String getTextProperty() {
110         return this.textProperty;
111     }
112 
113     public void setTextProperty(final String textProperty) {
114         this.textProperty = textProperty;
115     }
116 
117     public Image getImageProperty() {
118         return this.imageProperty;
119     }
120 
121     public void setImageProperty(final Image imageProperty) {
122         this.imageProperty = imageProperty;
123     }
124 
125     public int getAcceleratorProperty() {
126         return this.acceleratorProperty;
127     }
128 
129     public void setAcceleratorProperty(final int acceleratorProperty) {
130         this.acceleratorProperty = acceleratorProperty;
131     }
132 
133     public char getCharProperty() {
134         return this.charProperty;
135     }
136 
137     public void setCharProperty(final char charProperty) {
138         this.charProperty = charProperty;
139     }
140 
141     public int[] getIntArrayProperty() {
142         return this.intArrayProperty;
143     }
144 
145     public void setIntArrayProperty(final int[] intArrayProperty) {
146         this.intArrayProperty = intArrayProperty;
147     }
148 
149 }