Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
* @author mpostelnicu
*
*
*/
public class CheckBoxBootstrapFormComponent extends GenericEnablingBootstrapFormComponent<Boolean, BootstrapCheckbox> {
private static final long serialVersionUID = -4032850928243673675L;
Expand All @@ -44,7 +44,7 @@ public CheckBoxBootstrapFormComponent(final String id) {
}

@Override
protected FormComponent<Boolean> updatingBehaviorComponent() {
public FormComponent<Boolean> updatingBehaviorComponent() {
return wrappedCheckbox;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public CheckBoxToggleBootstrapFormComponent(final String id) {
}

@Override
protected FormComponent<Boolean> updatingBehaviorComponent() {
public FormComponent<Boolean> updatingBehaviorComponent() {
return wrappedCheckbox;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public CheckBoxYesNoToggleBootstrapFormComponent(final String id) {
}

@Override
protected FormComponent<Boolean> updatingBehaviorComponent() {
public FormComponent<Boolean> updatingBehaviorComponent() {
return wrappedCheckbox;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ protected void onUpdate(final AjaxRequestTarget target) {
* but the field may be a wrapper, in which case you should override this
* and provide the wrapped field.
*/
protected FormComponent<TYPE> updatingBehaviorComponent() {
public FormComponent<TYPE> updatingBehaviorComponent() {
return field;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public SummernoteConfig getConfig() {
}

@Override
protected FormComponent<String> updatingBehaviorComponent() {
public FormComponent<String> updatingBehaviorComponent() {
return summernoteEditor;
}

Expand Down