KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > type > SymbolType


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

10 package mondrian.olap.type;
11
12 /**
13  * The type of a symbolic expression.
14  *
15  * @author jhyde
16  * @since Feb 17, 2005
17  * @version $Id: //open/mondrian/src/main/mondrian/olap/type/SymbolType.java#2 $
18  */

19 public class SymbolType extends ScalarType {
20
21     /**
22      * Creates a symbol type.
23      */

24     public SymbolType() {
25     }
26
27 }
28
29 // End SymbolType.java
30
Popular Tags