CS计算机代考程序代写 b’eedbe67daa16d1c88bd4afb7087c8779dbc7c7′

b’eedbe67daa16d1c88bd4afb7087c8779dbc7c7′

blob 306�package programmingexample5;

public interface ShapeVisitor {

/*
* TODO Here, you need to add the required method signatures(s),
* to answer the question.
*
*/

void visit(Circle circle);

void visit(Rectangle rectangle);

void visit(Triangle triangle);

void visit(ShapeGroup group);

}