/*
 * 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.engine.spi.SessionFactoryImplementor;
import org.hibernate.param.ParameterSpecification;
import org.hibernate.type.Type;

Implementation of ParameterNode.
Author:Steve Ebersole
/** * Implementation of ParameterNode. * * @author Steve Ebersole */
public class ParameterNode extends HqlSqlWalkerNode implements DisplayableNode, ExpectedTypeAwareNode { private ParameterSpecification parameterSpecification; public ParameterSpecification getHqlParameterSpecification() { return parameterSpecification; } public void setHqlParameterSpecification(ParameterSpecification parameterSpecification) { this.parameterSpecification = parameterSpecification; } public String getDisplayText() { return "{" + ( parameterSpecification == null ? "???" : parameterSpecification.renderDisplayInfo() ) + "}"; } public void setExpectedType(Type expectedType) { getHqlParameterSpecification().setExpectedType( expectedType ); setDataType( expectedType ); } public Type getExpectedType() { return getHqlParameterSpecification() == null ? null : getHqlParameterSpecification().getExpectedType(); } public String getRenderText(SessionFactoryImplementor sessionFactory) { int count = 0; if ( getExpectedType() != null && ( count = getExpectedType().getColumnSpan( sessionFactory ) ) > 1 ) { StringBuilder buffer = new StringBuilder(); buffer.append( "(?" ); for ( int i = 1; i < count; i++ ) { buffer.append( ", ?" ); } buffer.append( ")" ); return buffer.toString(); } else { return "?"; } } }