All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class symantec.itools.awt.shape.Ellipse

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Canvas
                   |
                   +----symantec.itools.awt.shape.Shape
                           |
                           +----symantec.itools.awt.shape.Ellipse

public class Ellipse
extends Shape
This class forms the Ellipse shape component.

See Also:
Circle

Constructor Index

 o Ellipse()
Constructs a default Ellipse.

Method Index

 o paint(Graphics)
Paints the ellipse using the given graphics context.

Constructors

 o Ellipse
  public Ellipse()
Constructs a default Ellipse.

Methods

 o paint
  public void paint(Graphics g)
Paints the ellipse using the given graphics context. This is a standard Java AWT method which typically gets called by the AWT to handle painting this component. It paints this component using the given graphics context. The graphics context clipping region is set to the bounding rectangle of this component and its <0,0> coordinate is this component's top-left corner.

Parameters:
g - the graphics context used for painting
Overrides:
paint in class Canvas
See Also:
repaint, update

All Packages  Class Hierarchy  This Package  Previous  Next  Index