/* * Hibernate, Relational Persistence for Idiomatic Java * * License: GNU Lesser General Public License (LGPL), version 2.1 or later. * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.hql.internal.ast.tree; import org.hibernate.type.Type; /** * A base AST node for the intermediate tree. * User: josh * Date: Dec 6, 2003 * Time: 10:29:14 AM */ public class SqlNode extends Node { /** * The original text for the node, mostly for debugging. */ private String originalText; /** * The data type of this node. Null for 'no type'. */ private Type dataType; public void setText(String s) { super.setText( s ); if ( s != null && s.length() > 0 && originalText == null ) { originalText = s; } } public String getOriginalText() { return originalText; } public Type getDataType() { return dataType; } public void setDataType(Type dataType) { this.dataType = dataType; } }