All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.palexdev.mfxcomponents.behaviors.MFXSegmentedButtonBehavior Maven / Gradle / Ivy

There is a newer version: 11.26.0
Show 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