KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > calc > impl > AbstractIntegerCalc


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/calc/impl/AbstractIntegerCalc.java#3 $
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) 2006-2006 Julian Hyde
7 // All Rights Reserved.
8 // You must accept the terms of that agreement to use this software.
9 */

10 package mondrian.calc.impl;
11
12 import mondrian.olap.Evaluator;
13 import mondrian.olap.Exp;
14 import mondrian.olap.type.NumericType;
15 import mondrian.calc.impl.AbstractCalc;
16 import mondrian.calc.IntegerCalc;
17 import mondrian.calc.Calc;
18
19 /**
20  * Abstract implementation of the {@link mondrian.calc.IntegerCalc} interface.
21  *
22  * <p>The derived class must
23  * implement the {@link #evaluateInteger(mondrian.olap.Evaluator)} method,
24  * and the {@link #evaluate(mondrian.olap.Evaluator)} method will call it.
25  *
26  * @author jhyde
27  * @version $Id: //open/mondrian/src/main/mondrian/calc/impl/AbstractIntegerCalc.java#3 $
28  * @since Sep 26, 2005
29  */

30 public abstract class AbstractIntegerCalc
31         extends AbstractCalc
32         implements IntegerCalc {
33     private final Calc[] calcs;
34
35     protected AbstractIntegerCalc(Exp exp, Calc[] calcs) {
36         super(exp);
37         this.calcs = calcs;
38         assert getType() instanceof NumericType;
39     }
40
41     public Object JavaDoc evaluate(Evaluator evaluator) {
42         return evaluateInteger(evaluator);
43     }
44
45     public Calc[] getCalcs() {
46         return calcs;
47     }
48 }
49
50 // End AbstractIntegerCalc.java
51
Popular Tags