1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/11/09 12:33:34
6 */
7 package org.asyrinx.joey.gen.model.java;
8
9 /***
10 * @author takeshi
11 */
12 public interface JavaVisitor {
13
14 void visit(AppDomain appDomain);
15
16 void visit(Entity javaClass);
17
18 void visit(EntityKey javaClassKey);
19
20 void visit(JavaEnumeration enum);
21
22 void visit(Property property);
23
24 void visit(Reference reference);
25
26 }