~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/id/insert/IdentifierGeneratingInsert.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hibernate.id.insert;
 
2
 
 
3
import org.hibernate.sql.Insert;
 
4
import org.hibernate.dialect.Dialect;
 
5
 
 
6
/**
 
7
 * Nothing more than a distinguishing subclass of Insert used to indicate
 
8
 * intent.  Some subclasses of this also provided some additional
 
9
 * functionality or semantic to the genernated SQL statement string.
 
10
 *
 
11
 * @author Steve Ebersole
 
12
 */
 
13
public class IdentifierGeneratingInsert extends Insert {
 
14
        public IdentifierGeneratingInsert(Dialect dialect) {
 
15
                super( dialect );
 
16
        }
 
17
}