Uses of Class
m865.shapepack.Shape

Packages that use Shape
Default Package   
m865.shapepack   
 

Uses of Shape in
 

Subclasses of Shape in Default Package
 class MyCircle
          A Circle subclass of Ellipse.
 

Methods in Default Package that return Shape
 Shape MyFactory.createShape(java.lang.String shapeName, int x, int y, int w, int h, java.awt.Color c)
          Creates a specified shape
 Shape MyFactory.createShape(java.lang.String shapeName, int x, int y)
          Creates a specified shape with a default color and a bounding box of the default size.
 

Methods in Default Package with parameters of type Shape
static void SimpleDraw2.outputStuff(Shape x)
          Print shape specific information to the console.
static void SimpleDraw3.outputStuff(Shape x)
          Print shape specific information to the console.
static void SimpleDraw1.outputStuff(Shape x)
          Print shape specific information to the console.
 

Uses of Shape in m865.shapepack
 

Subclasses of Shape in m865.shapepack
 class Ellipse
          The concrete Shape subclass that defines ellipses.
 class Rectangle
          The concrete Shape subclass that defines rectangles.
 class Square
          The Square subclass of Rectangle.
 

Methods in m865.shapepack that return Shape
 Shape ShapeFactory.createShape(java.lang.String shapeName, int x, int y, int w, int h, java.awt.Color c)
          Creates a specified shape
 Shape ShapeFactory.createShape(java.lang.String shapeName, int x, int y)
          Creates a specified shape with a default color and a bounding box of the default size.