package postal; public abstract class Bar { private int mi_Width = 2; protected void setWidth(int width) { mi_Width = width; } protected int getWidth() { return mi_Width; } public abstract int getHeight(); }