Skip to content

Commit 3aa7c21

Browse files
committed
Fix of the issue MaterialCheckBoxCell.java:52: error: reference not found
1 parent 64bccb4 commit 3aa7c21

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/main/java/gwt/material/design/client/custom/MaterialCheckBoxCell.java

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,15 @@ public class MaterialCheckBoxCell extends AbstractEditableCell<Boolean, Boolean>
3737
private final boolean dependsOnSelection;
3838
private final boolean handlesSelection;
3939

40-
/**
41-
* Construct a new {@link CheckboxCell}.
42-
*/
4340
public MaterialCheckBoxCell() {
4441
this(false);
4542
}
4643

47-
/**
48-
* Construct a new {@link CheckboxCell} that optionally controls selection.
49-
*
50-
* @param isSelectBox
51-
* true if the cell controls the selection state
52-
* @deprecated use {@link #CheckboxCell(boolean, boolean)} instead
53-
*/
5444
@Deprecated
5545
public MaterialCheckBoxCell(boolean isSelectBox) {
5646
this(isSelectBox, isSelectBox);
5747
}
5848

59-
/**
60-
* Construct a new {@link CheckboxCell} that optionally controls selection.
61-
*
62-
* @param dependsOnSelection
63-
* true if the cell depends on the selection state
64-
* @param handlesSelection
65-
* true if the cell modifies the selection state
66-
*/
6749
public MaterialCheckBoxCell(boolean dependsOnSelection, boolean handlesSelection) {
6850
super(BrowserEvents.CHANGE, BrowserEvents.KEYDOWN, BrowserEvents.CLICK);
6951
this.dependsOnSelection = dependsOnSelection;

0 commit comments

Comments
 (0)