KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > notification > filter > etcl > AbstractTCLVisitor


1 package org.jacorb.notification.filter.etcl;
2
3 /*
4  * JacORB - a free Java ORB
5  *
6  * Copyright (C) 1999-2004 Gerald Brose
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */

23
24 /**
25  * Adapter Class to help creating a Visitor for TCL Trees. Override the appropiate Methods.
26  *
27  * @version $Id: AbstractTCLVisitor.java,v 1.3 2005/02/14 00:07:08 alphonse.bendt Exp $
28  */

29
30 public abstract class AbstractTCLVisitor
31 {
32     public void visitPlus(PlusOperator plus) throws VisitorException
33     {
34     }
35
36     public void visitAnd(AndOperator and) throws VisitorException
37     {
38     }
39
40     public void visitMinus(MinusOperator minus) throws VisitorException
41     {
42     }
43
44     public void visitDiv(DivOperator div) throws VisitorException
45     {
46     }
47
48     public void visitMult(MultOperator mult) throws VisitorException
49     {
50     }
51
52     public void visitBool(BoolValue bool) throws VisitorException
53     {
54     }
55
56     public void visitNumber(NumberValue number) throws VisitorException
57     {
58     }
59
60     public void visitIdent(IdentValue ident) throws VisitorException
61     {
62     }
63
64     public void visitSubstr(SubstrOperator substr) throws VisitorException
65     {
66     }
67
68     public void visitString(StringValue string) throws VisitorException
69     {
70     }
71
72     public void visitDot(DotOperator dot) throws VisitorException
73     {
74     }
75
76     public void visitComponent(ETCLComponentName component) throws VisitorException
77     {
78     }
79
80     public void visitNot(NotOperator not) throws VisitorException
81     {
82     }
83
84     public void visitOr(OrOperator or) throws VisitorException
85     {
86     }
87
88     public void visitEq(EqOperator or) throws VisitorException
89     {
90     }
91
92     public void visitNeq(NeqOperator or) throws VisitorException
93     {
94     }
95
96     public void visitLt(LtOperator lt) throws VisitorException
97     {
98     }
99
100     public void visitLte(LteOperator lt) throws VisitorException
101     {
102     }
103
104     public void visitGt(GtOperator gt) throws VisitorException
105     {
106     }
107
108     public void visitArray(ArrayOperator array) throws VisitorException
109     {
110     }
111
112     public void visitAssoc(AssocOperator assoc) throws VisitorException
113     {
114     }
115
116     public void visitUnionPosition(UnionPositionOperator unionPos) throws VisitorException
117     {
118     }
119
120     public void visitImplicit(ImplicitOperatorNode operator) throws VisitorException
121     {
122     }
123
124     public void visitExist(ExistOperator exist) throws VisitorException
125     {
126     }
127
128     public void visitDefault(DefaultOperator defaultOp) throws VisitorException
129     {
130     }
131
132     public void visitIn(InOperator in) throws VisitorException
133     {
134     }
135
136     public void visitGteOperator(GteOperator o) throws VisitorException
137     {
138     }
139
140     public void visitRuntimeVariable(RuntimeVariableNode r) throws VisitorException
141     {
142     }
143 }
Popular Tags