w; private int h; private int d; public HouseImpl(int width, int height, int depth) { w = width; h = height; d = depth; } public int getWidth() { return w; } public int getHeight() { return h; } public int getDepth() { return d; } } House Implementation