interfaces
Interface IVisitable

All Known Implementing Classes:
CircleShape, RectangleShape, TriangleShape

public interface IVisitable

Interface to make the object visitable

Version:
1.0, 05-Apr-07
Author:
Prathab

Method Summary
 void accept(IShapeVisitor shapeVisitor)
          Accepts the visitor and execute its method
 

Method Detail

accept

void accept(IShapeVisitor shapeVisitor)
Accepts the visitor and execute its method

Parameters:
shapeVisitor - the shapeVisitor object to be accepted
See Also:
IShapeVisitor