Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -6,7 +6,7 @@
6 6 /**
7 7 * Property for the style name of the COL element. Supports border, background,
8 8 * width & visibility CSS properties.
9 - * <p>
9 + * <p/>
10 10 * <a href="http://www.quirksmode.org/css/columns.html">COL doc</a>
11 11 */
12 12 public class ColStyleNameProperty extends ColumnProperty
  @@ -18,7 +18,7 @@
18 18 @Override
19 19 public ColStyleNameProperty getDefault()
20 20 {
21 - if (sInstance == null)
21 + if ( sInstance == null )
22 22 {
23 23 sInstance = new ColStyleNameProperty();
24 24 }
  @@ -30,10 +30,10 @@
30 30
31 31 public ColStyleNameProperty()
32 32 {
33 - this(null);
33 + this( null );
34 34 }
35 35
36 - public ColStyleNameProperty(String pValue)
36 + public ColStyleNameProperty( String pValue )
37 37 {
38 38 mValue = pValue;
39 39 }