KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > olap > mdxparse > ExpVisitor


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
14 package com.tonbeller.jpivot.olap.mdxparse;
15
16 import com.tonbeller.jpivot.olap.model.Dimension;
17 import com.tonbeller.jpivot.olap.model.Hierarchy;
18 import com.tonbeller.jpivot.olap.model.Level;
19 import com.tonbeller.jpivot.olap.model.Member;
20
21 /**
22  * Visitor for MDX parse expressions
23  */

24 public interface ExpVisitor {
25
26   void visitCompoundId(CompoundId visio);
27   void visitFormula(Formula visio);
28   void visitFunCall(FunCall visio);
29   void visitLiteral(Literal visio);
30   void visitMemberProperty(MemberProperty visio);
31   void visitParsedQuery(ParsedQuery visio);
32   void visitQueryAxis(QueryAxis visio);
33   void visitDimension(Dimension visio);
34   void visitHierarchy(Hierarchy visio);
35   void visitLevel(Level visio);
36   void visitMember(Member visio);
37
38 } // ExpVisitor
39
Popular Tags