Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/UnSelectableRegularTable.java

Diff revisions: vs.
  @@ -1,15 +1,15 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.client.widgets.datatables;
3 -
4 - public class UnSelectableRegularTable<T> extends RegularTable<T> {
5 - public UnSelectableRegularTable( ListTableModel<T> pListTableModel, TableDefinitionPlus<T> pDefinition ) {
6 - super( pListTableModel, pDefinition );
7 - setSelectionPolicy( RowSelectionPolicy.NONE );
8 - }
9 -
10 - @Override
11 - protected void onLoad() {
12 - super.onLoad();
13 - loadData();
14 - }
15 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.client.widgets.datatables;
3 +
4 + public class UnSelectableRegularTable<T> extends RegularTable<T> {
5 + public UnSelectableRegularTable( ListTableModel<T> pListTableModel, TableDefinitionPlus<T> pDefinition ) {
6 + super( pListTableModel, pDefinition );
7 + setSelectionPolicy( RowSelectionPolicy.NONE );
8 + }
9 +
10 + @Override
11 + protected void onLoad() {
12 + super.onLoad();
13 + loadData();
14 + }
15 + }