/src/org/ooc/frontend/model/Visitable.java
http://github.com/nddrylliog/ooc · Java · 13 lines · 8 code · 5 blank · 0 comment · 0 complexity · 145f4688905e532da1f47cd6ae73559f MD5 · raw file
- package org.ooc.frontend.model;
- import java.io.IOException;
- import org.ooc.frontend.Visitor;
- public interface Visitable {
- public abstract void accept(Visitor visitor) throws IOException;
- public abstract boolean hasChildren();
- public abstract void acceptChildren(Visitor visitor) throws IOException;
- }