KickJava   Java API By Example, From Geeks To Geeks.

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


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. Throws an UnsupportedOperationException
17  * for each method.
18  *
19  * @author av
20  */

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