📄 parameternode.java
字号:
// $Id: ParameterNode.java 10060 2006-06-28 02:53:39Z steve.ebersole@jboss.com $package org.hibernate.hql.ast.tree;import org.hibernate.param.ParameterSpecification;import org.hibernate.type.Type;import org.hibernate.engine.SessionFactoryImplementor;/** * 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 ) { StringBuffer buffer = new StringBuffer(); buffer.append( "(?" ); for ( int i = 1; i < count; i++ ) { buffer.append( ", ?" ); } buffer.append( ")" ); return buffer.toString(); } else { return "?"; } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -