class Rectangle { private int width = 0; private int height = 0; public void setSize(int w, int h) { this.width = w; this.height = h; } } class Window extends Rectangle { private String title; public void setTitle(String t) { this.title = t; } }