package cnp.ew.displayer;

import java.awt.*;
import cnp.ew.lightweight.*;

final public class CpBlankBorderDisplayer extends CpAbstractBorderDisplayer
{

    public static CpBlankBorderDisplayer singleton = new CpBlankBorderDisplayer();

    public void paintBordersIn(CpLightweightComponent c, Graphics g, int x, int y, int w, int h)
    {
    }

    public int getLeftBorderThickness(CpLightweightComponent c)
    {
        return 0;
    }

    public int getRightBorderThickness(CpLightweightComponent c)
    {
        return 0;
    }

    public int getTopBorderThickness(CpLightweightComponent c)
    {
        return 0;
    }

    public int getBottomBorderThickness(CpLightweightComponent c)
    {
        return 0;
    }
}
