8 lines
153 B
Java
8 lines
153 B
Java
package visitor;
|
|
|
|
/** Element interface — accepts a visitor */
|
|
public interface Shape {
|
|
void accept(ShapeVisitor visitor);
|
|
String getName();
|
|
}
|