⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aggregatenode.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
// $Id: AggregateNode.java,v 1.14 2005/02/12 07:19:19 steveebersole Exp $package org.hibernate.hql.ast;import antlr.SemanticException;import org.hibernate.type.Type;/** * Represents an aggregate function i.e. min, max, sum, avg. * * @author josh Sep 21, 2004 9:22:02 PM */class AggregateNode extends AbstractSelectExpression implements SelectExpression {	public AggregateNode() {	}	public Type getDataType() {		// Get the function return value type, based on the type of the first argument.		return getSessionFactoryHelper().findFunctionReturnType( getText(), getFirstChild() );	}	public void setScalarColumnText(int i) throws SemanticException {		ColumnHelper.generateSingleScalarColumn( this, i );	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -