Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -3,13 +3,10 @@
3 3
4 4 import com.google.gwt.gen2.table.client.property.*;
5 5
6 - public class ClickHandlerProperty extends ColumnProperty
7 - {
8 - public static final Type<ClickHandlerProperty> TYPE = new Type<ClickHandlerProperty>()
9 - {
6 + public class ClickHandlerProperty extends ColumnProperty {
7 + public static final Type<ClickHandlerProperty> TYPE = new Type<ClickHandlerProperty>() {
10 8 @Override
11 - public ClickHandlerProperty getDefault()
12 - {
9 + public ClickHandlerProperty getDefault() {
13 10 return sDefault;
14 11 }
15 12 };
  @@ -18,13 +15,11 @@
18 15
19 16 private final CellClickHandler<?> mValue;
20 17
21 - public ClickHandlerProperty( CellClickHandler<?> pValue )
22 - {
18 + public ClickHandlerProperty( CellClickHandler<?> pValue ) {
23 19 mValue = pValue;
24 20 }
25 21
26 - public CellClickHandler<?> getValue()
27 - {
22 + public CellClickHandler<?> getValue() {
28 23 return mValue;
29 24 }
30 25 }