1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.seasar.uruma.component.jface;
17
18 import org.eclipse.swt.widgets.CoolBar;
19 import org.seasar.uruma.annotation.ComponentAttribute;
20 import org.seasar.uruma.annotation.FieldDescription;
21 import org.seasar.uruma.annotation.RenderingPolicy;
22 import org.seasar.uruma.annotation.RenderingPolicy.ConversionType;
23 import org.seasar.uruma.annotation.RenderingPolicy.SetTiming;
24
25
26
27
28
29
30 public class CoolBarComponent extends CompositeComponent {
31
32 @RenderingPolicy(conversionType = ConversionType.BOOLEAN, setTiming = SetTiming.RENDER_AFTER)
33 @ComponentAttribute
34 @FieldDescription("ロック状態")
35 public String locked;
36
37 @RenderingPolicy(conversionType = ConversionType.INT_ARRAY, setTiming = SetTiming.RENDER_AFTER)
38 @ComponentAttribute
39 @FieldDescription("ラップ表示項目")
40 public String wrapIndices;
41 }