Interface TransitionAwareUI
-
- All Known Subinterfaces:
ActionPopupTransitionAwareUI
- All Known Implementing Classes:
BasicSwitchUI,BasicTriStateCheckBoxUI,ColorSliderUI,RadianceButtonUI,RadianceCheckBoxMenuItemUI,RadianceCheckBoxUI,RadianceColorSelectorComponentUI,RadianceComboBoxUI,RadianceCommandButtonUI,RadianceEditorPaneUI,RadianceFormattedTextFieldUI,RadianceMenuItemUI,RadianceMenuUI,RadiancePasswordFieldUI,RadianceRadioButtonMenuItemUI,RadianceRadioButtonUI,RadianceRibbonTaskToggleButtonUI,RadianceScrollBarUI,RadianceSliderUI,RadianceSplitPaneDivider,RadianceSwitchUI,RadianceTextAreaUI,RadianceTextFieldUI,RadianceTextPaneUI,RadianceToggleButtonUI,RadianceTriStateCheckBoxUI
public interface TransitionAwareUIGeneral interface for UIs that wish to provide transition effects on one of their components. This class is for internal use only.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StateTransitionTrackergetTransitionTracker()Returns the model for tracking the transitions.booleanisInside(java.awt.event.MouseEvent me)Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.
-
-
-
Method Detail
-
isInside
boolean isInside(java.awt.event.MouseEvent me)
Checks whether the mouse position of the specified event lies inside the area of the component designated for transition effects.- Parameters:
me- Mouse event.- Returns:
trueif the mouse position of the specified event lies inside the area of the component designated for transition effects,falseotherwise.
-
getTransitionTracker
StateTransitionTracker getTransitionTracker()
Returns the model for tracking the transitions.- Returns:
- Model for tracking the transitions.
-
-