1 /* 2 // $Id: //open/mondrian/src/main/mondrian/olap/type/StringType.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 import mondrian.olap.Dimension; 13 import mondrian.olap.Hierarchy; 14 15 /** 16 * The type of a string expression. 17 * 18 * @author jhyde 19 * @since Feb 17, 2005 20 * @version $Id: //open/mondrian/src/main/mondrian/olap/type/StringType.java#2 $ 21 */ 22 public class StringType extends ScalarType { 23 24 /** 25 * Creates a string type. 26 */ 27 public StringType() { 28 } 29 30 } 31 32 // End StringType.java 33