Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/ColStyleNameProperty.java

Diff revisions: vs.
  @@ -9,17 +9,13 @@
9 9 * <p/>
10 10 * <a href="http://www.quirksmode.org/css/columns.html">COL doc</a>
11 11 */
12 - public class ColStyleNameProperty extends ColumnProperty
13 - {
14 - public static final Type<ColStyleNameProperty> TYPE = new Type<ColStyleNameProperty>()
15 - {
12 + public class ColStyleNameProperty extends ColumnProperty {
13 + public static final Type<ColStyleNameProperty> TYPE = new Type<ColStyleNameProperty>() {
16 14 private ColStyleNameProperty sInstance = null;
17 15
18 16 @Override
19 - public ColStyleNameProperty getDefault()
20 - {
21 - if ( sInstance == null )
22 - {
17 + public ColStyleNameProperty getDefault() {
18 + if ( sInstance == null ) {
23 19 sInstance = new ColStyleNameProperty();
24 20 }
25 21 return sInstance;
  @@ -28,18 +24,15 @@
28 24
29 25 private final String mValue;
30 26
31 - public ColStyleNameProperty()
32 - {
27 + public ColStyleNameProperty() {
33 28 this( null );
34 29 }
35 30
36 - public ColStyleNameProperty( String pValue )
37 - {
31 + public ColStyleNameProperty( String pValue ) {
38 32 mValue = pValue;
39 33 }
40 34
41 - public String getValue()
42 - {
35 + public String getValue() {
43 36 return mValue;
44 37 }
45 38 }