All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.hql.ast.util.AliasGenerator Maven / Gradle / Ivy

// $Id: AliasGenerator.java 7460 2005-07-12 20:27:29Z steveebersole $
package org.hibernate.hql.ast.util;

import org.hibernate.util.StringHelper;

/**
 * Generates class/table/column aliases during semantic analysis and SQL rendering.
 * 

* Its essential purpose is to keep an internal counter to ensure that the * generated aliases are unique. */ public class AliasGenerator { private int next = 0; private int nextCount() { return next++; } public String createName(String name) { return StringHelper.generateAlias( name, nextCount() ); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy