io.github.palexdev.mfxcomponents.behaviors.MFXSegmentedButtonBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
The newest version!
package io.github.palexdev.mfxcomponents.behaviors;
import io.github.palexdev.mfxcomponents.controls.buttons.MFXSegmentedButton;
import io.github.palexdev.mfxcomponents.skins.MFXSegmentedButtonSkin.MFXSegment;
import io.github.palexdev.mfxcore.behavior.BehaviorBase;
/**
* Default behavior used by {@link MFXSegmentedButton}, it's however empty, as the event target is not the button
* itself but its segments. But since {@link MFXSegment} is a common selectable, it uses behaviors of type
* {@link MFXSelectableBehaviorBase}.
*/
public class MFXSegmentedButtonBehavior extends BehaviorBase {
public MFXSegmentedButtonBehavior(MFXSegmentedButton node) {
super(node);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy