1 /*
2 * joey-gen and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/08/15 15:23:53
6 */
7 package org.asyrinx.joey.gen.model.rdb.visitor;
8
9 import org.asyrinx.joey.gen.model.EnumerationEntry;
10 import org.asyrinx.joey.gen.model.rdb.Column;
11 import org.asyrinx.joey.gen.model.rdb.Database;
12 import org.asyrinx.joey.gen.model.rdb.Databases;
13 import org.asyrinx.joey.gen.model.rdb.PrimaryKey;
14 import org.asyrinx.joey.gen.model.rdb.RdbEnumeration;
15 import org.asyrinx.joey.gen.model.rdb.ForeignKey;
16 import org.asyrinx.joey.gen.model.rdb.ForeignKeyEntry;
17 import org.asyrinx.joey.gen.model.rdb.Index;
18 import org.asyrinx.joey.gen.model.rdb.IndexEntry;
19 import org.asyrinx.joey.gen.model.rdb.RdbVisitor;
20 import org.asyrinx.joey.gen.model.rdb.Table;
21 import org.asyrinx.joey.gen.model.rdb.Unique;
22
23 /***
24 * @author akima
25 */
26 public class RdbVisitorMock implements RdbVisitor {
27
28 /***
29 *
30 */
31 public RdbVisitorMock() {
32 super();
33
34 }
35
36 /*
37 * (non-Javadoc)
38 *
39 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Column)
40 */
41 public void visit(Column column) {
42 //do nothing
43 }
44
45 /*
46 * (non-Javadoc)
47 *
48 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Database)
49 */
50 public void visit(Database database) {
51 //do nothing
52 }
53
54 /*
55 * (non-Javadoc)
56 *
57 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Databases)
58 */
59 public void visit(Databases databases) {
60 //do nothing
61 }
62
63 /*
64 * (non-Javadoc)
65 *
66 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.JavaEnumeration)
67 */
68 public void visit(RdbEnumeration enumeration) {
69 //do nothing
70 }
71
72 /*
73 * (non-Javadoc)
74 *
75 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.EnumerationEntry)
76 */
77 public void visit(EnumerationEntry enumerationEntry) {
78 //do nothing
79 }
80
81 /*
82 * (non-Javadoc)
83 *
84 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.ForeignKey)
85 */
86 public void visit(ForeignKey foreignKey) {
87 //do nothing
88 }
89
90 /*
91 * (non-Javadoc)
92 *
93 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.ForeignKeyEntry)
94 */
95 public void visit(ForeignKeyEntry foreignKeyEntry) {
96 //do nothing
97 }
98
99 /*
100 * (non-Javadoc)
101 *
102 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Index)
103 */
104 public void visit(Index index) {
105 //do nothing
106 }
107
108 /*
109 * (non-Javadoc)
110 *
111 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.IndexEntry)
112 */
113 public void visit(IndexEntry indexEntry) {
114 //do nothing
115 }
116
117 /*
118 * (non-Javadoc)
119 *
120 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.PrimaryKey)
121 */
122 public void visit(PrimaryKey primaryKey) {
123 //do nothing
124 }
125
126 /*
127 * (non-Javadoc)
128 *
129 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Table)
130 */
131 public void visit(Table table) {
132 //do nothing
133 }
134
135 /*
136 * (non-Javadoc)
137 *
138 * @see org.asyrinx.joey.gen.model.rdb.RdbVisitor#visit(org.asyrinx.joey.gen.model.rdb.Unique)
139 */
140 public void visit(Unique unique) {
141 //do nothing
142 }
143 }