KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/type/BooleanType.java#4 $
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-2006 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 boolean expression.
14  *
15  * @author jhyde
16  * @since Feb 17, 2005
17  * @version $Id: //open/mondrian/src/main/mondrian/olap/type/BooleanType.java#4 $
18  */

19 public class BooleanType extends ScalarType {
20     public String JavaDoc toString() {
21         return "BOOLEAN";
22     }
23 }
24
25 // End BooleanType.java
26
Popular Tags