KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
17  * Created on 29.10.2002
18  *
19  * @author av
20  */

21 public interface Visitor {
22   void visitAxis(Axis v);
23   void visitCell(Cell v);
24   void visitDimension(Dimension v);
25   void visitHierarchy(Hierarchy v);
26   void visitLevel(Level v);
27   void visitMember(Member v);
28   void visitPosition(Position v);
29   void visitProperty(Property v);
30   void visitResult(Result v);
31   void visitMemberPropertyMeta(MemberPropertyMeta v);
32
33   void visitBooleanExpr(BooleanExpr v);
34   void visitIntegerExpr(IntegerExpr v);
35   void visitDoubleExpr(DoubleExpr v);
36   void visitStringExpr(StringExpr v);
37   void visitFunCallExpr(FunCallExpr v);
38   void visitParameterExpr(ParameterExpr v);
39   void visitPropertyExpr(PropertyExpr v);
40   void visitEmptyMember(EmptyMember v);
41
42 }
43
Popular Tags