interfaces
Interface IShapeFactory

All Known Implementing Classes:
ShapeFactory

public interface IShapeFactory

Factory interface for the shape objects creation

Version:
1.0, 21-Mar-07
Author:
Prathab
See Also:
IShape

Method Summary
 IShape getShape(java.lang.String shapeName, ShapeCoordinates shapeCoordinates, ICommandMediator commandMediator)
          Creates shapes object
 

Method Detail

getShape

IShape getShape(java.lang.String shapeName,
                ShapeCoordinates shapeCoordinates,
                ICommandMediator commandMediator)
Creates shapes object

Parameters:
shapeName - name of the shape
shapeCoordinates - default coordinates of the shape
commandMediator - command meditor to interact with other classes
Returns:
new IShape object
See Also:
ShapeCoordinates, ICommandMediator