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

Several renames to improve naming consistency #119

Draft
wants to merge 1 commit into
base: release-candidate
Choose a base branch
from
Draft
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
@@ -1,6 +1,6 @@
Class {
#name : #Bootstrap3RadioWebViewTest,
#superclass : #SingleSelectionWebViewBehaviorTest,
#superclass : #SingleSelectionWebViewTest,
#category : #'Willow-Bootstrap-3-Tests-WebViews'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Class {
#name : #Bootstrap4RadioWebViewTest,
#superclass : #SingleSelectionWebViewBehaviorTest,
#superclass : #SingleSelectionWebViewTest,
#category : #'Willow-Bootstrap-4-Tests-WebViews'
}

Expand Down
4 changes: 2 additions & 2 deletions source/Willow-Bootstrap/BootstrapCheckboxWebView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ I'm a checkbox specifically designed to use the html structure required by Boots
"
Class {
#name : #BootstrapCheckboxWebView,
#superclass : #BinaryChoiceWebViewBehavior,
#superclass : #BinaryChoiceWebView,
#instVars : [
'commandToComponent',
'interactionInterpreter',
Expand Down Expand Up @@ -80,7 +80,7 @@ BootstrapCheckboxWebView >> initializeLabeledAccordingTo: anOptionalLabel applyi

labelOptional := anOptionalLabel.
commandToComponent := aCommandToComponent.
interactionInterpreter := EventInterpreterDispatcher defaultingToClickHidden.
interactionInterpreter := SingleEventInterpreterDispatcher defaultingToClickHidden.
identifierAssigner := IdentifierAssigner prefixedBy: 'checkbox'.
isChecked := true
]
Expand Down
10 changes: 8 additions & 2 deletions source/Willow-Bootstrap/BootstrapRadioWebView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ I'm a radio button group specifically designed to use the html structure require
"
Class {
#name : #BootstrapRadioWebView,
#superclass : #SingleSelectionWebViewBehavior,
#superclass : #AbstractSingleSelectionWebView,
#instVars : [
'interactionInterpreter',
'renderingBlock',
Expand All @@ -13,6 +13,12 @@ Class {
#category : #'Willow-Bootstrap-WebViews'
}

{ #category : #testing }
BootstrapRadioWebView class >> isAbstract [

^ self = BootstrapRadioWebView
]

{ #category : #'instance creation' }
BootstrapRadioWebView class >> renderingWith: aRenderingBlock applyingToLabel: aLabelCommand applyingToInput: anInputCommand [

Expand All @@ -28,7 +34,7 @@ BootstrapRadioWebView >> initializeRenderingWith: aRenderingBlock applyingToLabe
renderingBlock := aRenderingBlock.
labelCommand := aLabelCommand.
inputCommand := anInputCommand.
interactionInterpreter := EventInterpreterDispatcher defaultingToChange
interactionInterpreter := SingleEventInterpreterDispatcher defaultingToChange
]

{ #category : #'private - accessing' }
Expand Down