Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #439 #440

Open
wants to merge 1 commit into
base: dgtkit-4.x
Choose a base branch
from
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