package programmingexample5;
import java.util.ArrayList;
public class ShapeGroup implements ShapeVisitable {
private ArrayList
public ShapeGroup() {
elems = new ArrayList
}
public void add(ShapeVisitable shape) {
elems.add(shape);
}
public void remove(ShapeVisitable shape) {
elems.remove(shape);
}
@Override
public void accept(ShapeVisitor v) {
/*
* TODO You need to implement this method, to answer the question.
*/
}
}