<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import javax.swing.JFrame;

/** An object is like a JFrame...*/
public class C extends JFrame {
    
    /** = area of the window */
    public int area() {
        return getWidth() * getHeight();
    }
    
    /** Set the width equal to the height. */
    public void square() {
        setSize(getHeight(), getHeight());
    }
}</pre></body></html>