1
2
3
4
5
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.TablePattern;
22 import org.asyrinx.joey.gen.model.rdb.TablePatternParam;
23 import org.asyrinx.joey.gen.model.rdb.Unique;
24
25 /***
26 * @author akima
27 */
28 public class RdbVisitorMock implements RdbVisitor {
29
30 /***
31 *
32 */
33 public RdbVisitorMock() {
34 super();
35
36 }
37
38
39
40
41
42
43 public void visit(Column column) {
44
45 }
46
47
48
49
50
51
52 public void visit(Database database) {
53
54 }
55
56
57
58
59
60
61 public void visit(Databases databases) {
62
63 }
64
65
66
67
68
69
70 public void visit(RdbEnumeration enumeration) {
71
72 }
73
74
75
76
77
78
79 public void visit(EnumerationEntry enumerationEntry) {
80
81 }
82
83
84
85
86
87
88 public void visit(ForeignKey foreignKey) {
89
90 }
91
92
93
94
95
96
97 public void visit(ForeignKeyEntry foreignKeyEntry) {
98
99 }
100
101
102
103
104
105
106 public void visit(Index index) {
107
108 }
109
110
111
112
113
114
115 public void visit(IndexEntry indexEntry) {
116
117 }
118
119
120
121
122
123
124 public void visit(PrimaryKey primaryKey) {
125
126 }
127
128
129
130
131
132
133 public void visit(Table table) {
134
135 }
136
137
138
139
140
141
142 public void visit(TablePattern tablePattern) {
143
144 }
145
146
147
148
149
150
151 public void visit(TablePatternParam tablePatternParam) {
152
153 }
154
155
156
157
158
159
160 public void visit(Unique unique) {
161
162 }
163 }