Base java event POC
This commit is contained in:
10
src/main/java/ovh/gasser/newshapes/ShapeVisitor.java
Normal file
10
src/main/java/ovh/gasser/newshapes/ShapeVisitor.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package ovh.gasser.newshapes;
|
||||
|
||||
import ovh.gasser.newshapes.shapes.SCollection;
|
||||
import ovh.gasser.newshapes.shapes.SRectangle;
|
||||
|
||||
public interface ShapeVisitor {
|
||||
void visitRectangle(SRectangle sRectangle);
|
||||
|
||||
void visitCollection(SCollection collection);
|
||||
}
|
||||
Reference in New Issue
Block a user