KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/type/NullType.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-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 null expression.
14  *
15  * @author medstat
16  * @version $Id: //open/mondrian/src/main/mondrian/olap/type/NullType.java#2 $
17  * @since Aug 21, 2006
18  */

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

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