KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > calc > ParameterCompilable


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/calc/ParameterCompilable.java#1 $
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;
11
12 import mondrian.olap.Parameter;
13
14 /**
15  * Extension to {@link mondrian.olap.Parameter} which allows compilation.
16  *
17  * @author jhyde
18  * @version $Id: //open/mondrian/src/main/mondrian/calc/ParameterCompilable.java#1 $
19  * @since Jul 22, 2006
20  */

21 public interface ParameterCompilable extends Parameter {
22     Calc compile(ExpCompiler compiler);
23 }
24
25 // End ParameterCompilable.java
26
Popular Tags