A good answer might be:

In general, a Circle object's data should say where it is, and it should have drawing methods. It should also have one (or more) constructors.

What is a Circle Object?

Let us try to be more specific about our goal:

Design a class that is used to draw circles in the drawing area of an applet. We want several convenient ways to say were the circles are located.

We have an important design decision: What exactly is a Circle object going to be? If the applet has 100 circles drawn in it, is each one an object? Or is there going to be just one Circle object that can be regarded as a "drawing tool" that is moved throught the drawing area as the many circles are drawn?

The answer to this question depends on our goal. As stated, the goal is to make it convenient to draw many circles. The drawing will be a static work of "art" that is not used interactively. Probably the "drawing tool" object is most approriate. The Circle object that will be designed will be like a plastic template with circles of various sizes punched out of it that is used with pencil and paper to draw circles.


QUESTION 2:

When would it be more useful to regard each circle in a drawing as an individual object?