com.alee.laf.list.IListPainter Maven / Gradle / Ivy
package com.alee.laf.list;
import com.alee.painter.ParameterizedPaint;
import com.alee.painter.SpecificPainter;
import javax.swing.*;
/**
* Base interface for {@link JList} component painters.
*
* @param component type
* @param component UI type
* @author Alexandr Zernov
*/
public interface IListPainter extends SpecificPainter, ParameterizedPaint
{
/**
* Returns whether or not item hover decoration is supported by this list painter.
*
* @return {@code true} if item hover decoration is supported by this list painter, {@code false} otherwise
*/
public boolean isItemHoverDecorationSupported ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy