Uses of Interface
org.patternfly.handler.ChangeHandler
Packages that use ChangeHandler
Package
Description
Provides PatternFly component implementations for building web applications in Java.
Provides the PatternFly badge component for displaying counts and status indicators.
Provides form components for building structured data entry interfaces.
Provides the PatternFly notification badge and notification drawer components.
Provides the PatternFly number input component.
Provides the PatternFly progress component.
Provides the PatternFly slider component and its subcomponents.
Provides a switch (toggle) component for binary on/off selections.
Provides text input group components for search, filter, and text input with utilities.
Common event handler interfaces used throughout PatternFly Java components.
-
Uses of ChangeHandler in org.patternfly.component
Methods in org.patternfly.component with parameters of type ChangeHandlerModifier and TypeMethodDescriptionKicHandler.onChange(ChangeHandler<C, String> changeHandler) KicHandler.onInput(ChangeHandler<C, String> changeHandler) KicHandler.onKeydown(ChangeHandler<C, String> changeHandler) KicHandler.onKeyup(ChangeHandler<C, String> changeHandler) -
Uses of ChangeHandler in org.patternfly.component.badge
Methods in org.patternfly.component.badge with parameters of type ChangeHandlerModifier and TypeMethodDescriptionBadge.onChange(ChangeHandler<Badge, Integer> changeHandler) Defines a change handler that is called when theBadge.value()of this badge changes. -
Uses of ChangeHandler in org.patternfly.component.form
Methods in org.patternfly.component.form with parameters of type ChangeHandlerModifier and TypeMethodDescriptionCheckbox.onChange(ChangeHandler<Checkbox, Boolean> changeHandler) Defines a change handler that is called when theCheckbox.value()of this checkbox changes.FormSelect.onChange(ChangeHandler<FormSelect, String> changeHandler) Defines a change handler that is called when theFormSelect.value()of this select changes.Radio.onChange(ChangeHandler<Radio, Boolean> changeHandler) Defines a change handler that is called when theRadio.value()of this radio changes.TextArea.onChange(ChangeHandler<TextArea, String> changeHandler) Defines a change handler that listens forEventType.changeevents.TextInput.onChange(ChangeHandler<TextInput, String> changeHandler) Defines a change handler that listens forEventType.changeevents.TextArea.onInput(ChangeHandler<TextArea, String> changeHandler) Defines a change handler that listens forEventType.inputevents.TextInput.onInput(ChangeHandler<TextInput, String> changeHandler) Defines a change handler that listens forEventType.inputevents.TextArea.onKeydown(ChangeHandler<TextArea, String> changeHandler) Defines a change handler that listens forEventType.keydownevents.TextInput.onKeydown(ChangeHandler<TextInput, String> changeHandler) Defines a change handler that listens forEventType.keydownevents.TextArea.onKeyup(ChangeHandler<TextArea, String> changeHandler) Defines a change handler that listens forEventType.keyupevents.TextInput.onKeyup(ChangeHandler<TextInput, String> changeHandler) Defines a change handler that listens forEventType.keyupevents. -
Uses of ChangeHandler in org.patternfly.component.notification
Methods in org.patternfly.component.notification with parameters of type ChangeHandlerModifier and TypeMethodDescriptionNotificationBadge.onChangeStatus(ChangeHandler<NotificationBadge, NotificationStatus> changeHandler) NotificationBadge.onChangeValue(ChangeHandler<NotificationBadge, Integer> changeHandler) Defines a change handler that is called when theNotificationBadge.value()of this notification badge changes. -
Uses of ChangeHandler in org.patternfly.component.numberinput
Methods in org.patternfly.component.numberinput with parameters of type ChangeHandlerModifier and TypeMethodDescriptionNumberInput.onBlur(ChangeHandler<NumberInput, Double> blurHandler) NumberInput.onChange(ChangeHandler<NumberInput, Double> changeHandler) NumberInput.onMinus(ChangeHandler<NumberInput, Double> minusHandler) NumberInput.onPlus(ChangeHandler<NumberInput, Double> plusHandler) -
Uses of ChangeHandler in org.patternfly.component.progress
Methods in org.patternfly.component.progress with parameters of type ChangeHandlerModifier and TypeMethodDescriptionProgress.onChange(ChangeHandler<Progress, Integer> changeHandler) Sets the change handler for the progress component. -
Uses of ChangeHandler in org.patternfly.component.slider
Methods in org.patternfly.component.slider with parameters of type ChangeHandler -
Uses of ChangeHandler in org.patternfly.component.switch_
Methods in org.patternfly.component.switch_ with parameters of type ChangeHandler -
Uses of ChangeHandler in org.patternfly.component.textinputgroup
Methods in org.patternfly.component.textinputgroup with parameters of type ChangeHandlerModifier and TypeMethodDescriptionBaseTextInputGroup.onChange(ChangeHandler<T, String> changeHandler) Defines a change handler that listens forEventType.changeevents.BaseTextInputGroup.onInput(ChangeHandler<T, String> changeHandler) Defines a change handler that listens forEventType.inputevents.BaseTextInputGroup.onKeydown(ChangeHandler<T, String> changeHandler) Defines a change handler that listens forEventType.keydownevents.BaseTextInputGroup.onKeyup(ChangeHandler<T, String> changeHandler) Defines a change handler that listens forEventType.keyupevents. -
Uses of ChangeHandler in org.patternfly.handler
Method parameters in org.patternfly.handler with type arguments of type ChangeHandlerModifier and TypeMethodDescriptionstatic <C,T> void ChangeHandler.fireIfChanged(C component, T oldValue, T value, List<ChangeHandler<C, T>> changeHandlers)