com.alee.extended.button.ISplitButtonPainter Maven / Gradle / Ivy
package com.alee.extended.button;
import com.alee.laf.button.IAbstractButtonPainter;
/**
* Base interface for WebSplitButton component painters.
*
* @param component type
* @param component UI type
* @author Mikle Garin
*/
public interface ISplitButtonPainter extends IAbstractButtonPainter
{
/**
* Returns whether or not mouse is currently over the split menu button.
*
* @return true if mouse is currently over the split menu button, false otherwise
*/
public boolean isOnSplit ();
}