super("count", prop);
return new Type[] { Hibernate.INTEGER };
distinct = true; return this;
StringBuffer buf = new StringBuffer(); buf.append("count("); if (distinct) buf.append("distinct "); return buf.append( criteriaQuery.getColumn(criteria, propertyName) ) .append(") as y") .append(position) .append('_") .toString();
if(distinct) { return "distinct " + super.toString(); } else { return super.toString(); }