Skip to content

Commit b98a33b

Browse files
committed
Fixes #439
1 parent 7525067 commit b98a33b

5 files changed

+6
-6
lines changed

forms/src/main/java/org/devgateway/toolkit/forms/wicket/components/form/CheckBoxBootstrapFormComponent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
/**
2121
* @author mpostelnicu
22-
*
22+
*
2323
*/
2424
public class CheckBoxBootstrapFormComponent extends GenericEnablingBootstrapFormComponent<Boolean, BootstrapCheckbox> {
2525
private static final long serialVersionUID = -4032850928243673675L;
@@ -44,7 +44,7 @@ public CheckBoxBootstrapFormComponent(final String id) {
4444
}
4545

4646
@Override
47-
protected FormComponent<Boolean> updatingBehaviorComponent() {
47+
public FormComponent<Boolean> updatingBehaviorComponent() {
4848
return wrappedCheckbox;
4949
}
5050

forms/src/main/java/org/devgateway/toolkit/forms/wicket/components/form/CheckBoxToggleBootstrapFormComponent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public CheckBoxToggleBootstrapFormComponent(final String id) {
5050
}
5151

5252
@Override
53-
protected FormComponent<Boolean> updatingBehaviorComponent() {
53+
public FormComponent<Boolean> updatingBehaviorComponent() {
5454
return wrappedCheckbox;
5555
}
5656

forms/src/main/java/org/devgateway/toolkit/forms/wicket/components/form/CheckBoxYesNoToggleBootstrapFormComponent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public CheckBoxYesNoToggleBootstrapFormComponent(final String id) {
3939
}
4040

4141
@Override
42-
protected FormComponent<Boolean> updatingBehaviorComponent() {
42+
public FormComponent<Boolean> updatingBehaviorComponent() {
4343
return wrappedCheckbox;
4444
}
4545

forms/src/main/java/org/devgateway/toolkit/forms/wicket/components/form/GenericBootstrapFormComponent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ protected void onUpdate(final AjaxRequestTarget target) {
232232
* but the field may be a wrapper, in which case you should override this
233233
* and provide the wrapped field.
234234
*/
235-
protected FormComponent<TYPE> updatingBehaviorComponent() {
235+
public FormComponent<TYPE> updatingBehaviorComponent() {
236236
return field;
237237
}
238238

forms/src/main/java/org/devgateway/toolkit/forms/wicket/components/form/SummernoteBootstrapFormComponent.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public SummernoteConfig getConfig() {
177177
}
178178

179179
@Override
180-
protected FormComponent<String> updatingBehaviorComponent() {
180+
public FormComponent<String> updatingBehaviorComponent() {
181181
return summernoteEditor;
182182
}
183183

0 commit comments

Comments
 (0)