KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > olap > model > VisitorSupportSloppy


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  *
11  *
12  */

13 package com.tonbeller.jpivot.olap.model;
14
15 /**
16  * default implementation of Visitor. Does nothing
17  *
18  * @author av
19  */

20 public abstract class VisitorSupportSloppy implements Visitor {
21
22   public VisitorSupportSloppy() {
23     super();
24   }
25
26   public void visitAxis(Axis v) {
27   }
28
29   public void visitCell(Cell v) {
30   }
31
32   public void visitDimension(Dimension v) {
33   }
34
35   public void visitHierarchy(Hierarchy v) {
36   }
37
38   public void visitLevel(Level v) {
39   }
40
41   public void visitMember(Member v) {
42   }
43
44   public void visitPosition(Position v) {
45   }
46
47   public void visitProperty(Property v) {
48   }
49
50   public void visitResult(Result v) {
51   }
52
53   public void visitMemberPropertyMeta(MemberPropertyMeta v) {
54   }
55
56   public void visitBooleanExpr(BooleanExpr v) {
57   }
58
59   public void visitIntegerExpr(IntegerExpr v) {
60   }
61
62   public void visitDoubleExpr(DoubleExpr v) {
63   }
64
65   public void visitStringExpr(StringExpr v) {
66   }
67
68   public void visitFunCallExpr(FunCallExpr v) {
69   }
70
71   public void visitParameterExpr(ParameterExpr v) {
72   }
73
74   public void visitPropertyExpr(PropertyExpr v) {
75   }
76
77   public void visitEmptyMember(EmptyMember v) {
78   }
79
80 }
81
Popular Tags