com.alee.laf.combobox.AdaptiveComboBoxPainter Maven / Gradle / Ivy
package com.alee.laf.combobox;
import com.alee.api.annotations.NotNull;
import com.alee.painter.AdaptivePainter;
import com.alee.painter.Painter;
import javax.swing.*;
/**
* Simple {@link ComboBoxPainter} adapter class.
* It is used to install simple non-specific painters into {@link WComboBoxUI}.
*
* @param component type
* @param component UI type
* @author Alexandr Zernov
*/
public final class AdaptiveComboBoxPainter extends AdaptivePainter
implements IComboBoxPainter
{
/**
* Constructs new {@link AdaptiveComboBoxPainter} for the specified painter.
*
* @param painter painter to adapt
*/
public AdaptiveComboBoxPainter ( @NotNull final Painter painter )
{
super ( painter );
}
@Override
public void prepareToPaint ( @NotNull final ComboBoxPaintParameters parameters )
{
/**
* Nothing needs to be done for adaptive class.
*/
}
@Override
public void cleanupAfterPaint ()
{
/**
* Nothing needs to be done for adaptive class.
*/
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy