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