package cnp.ew.displayer;

abstract public class CpAbstractOrientedDisplayer extends CpAbstractDisplayer
implements CpOrientable
{
    int orientation=ORIENT_LEFT_TO_RIGHT;

    public void setOrientation(int newOrientation)
    {
        orientation = newOrientation;
    }

    public int getOrientation()
    {
        return orientation;
    }
}

