KickJava   Java API By Example, From Geeks To Geeks.

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


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 public interface ParameterExpr extends Expression {
16   public static final int STRING = 0;
17   public static final int NUMBER = 1;
18   public static final int MEMBER = 2;
19   
20   /** internal name that identifies this parameter */
21   String JavaDoc getName();
22   
23   /** label to display to the user */
24   String JavaDoc getLabel();
25   
26   /** type of parameter */
27   int getType();
28   
29   /** value of the parameter */
30   Expression getValue();
31 }
32
Popular Tags