001 /* 002 // $Id: //open/mondrian/src/main/mondrian/olap/type/SymbolType.java#3 $ 003 // This software is subject to the terms of the Common Public License 004 // Agreement, available at the following URL: 005 // http://www.opensource.org/licenses/cpl.html. 006 // Copyright (C) 2005-2008 Julian Hyde 007 // All Rights Reserved. 008 // You must accept the terms of that agreement to use this software. 009 */ 010 package mondrian.olap.type; 011 012 /** 013 * The type of a symbolic expression. 014 * 015 * @author jhyde 016 * @since Feb 17, 2005 017 * @version $Id: //open/mondrian/src/main/mondrian/olap/type/SymbolType.java#3 $ 018 */ 019 public class SymbolType extends ScalarType { 020 021 /** 022 * Creates a symbol type. 023 */ 024 public SymbolType() { 025 super("SYMBOL"); 026 } 027 } 028 029 // End SymbolType.java