Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/param/ExplicitParameterSpecification.java
package org.hibernate.param;

/**
 * An additional contract for parameters which originate from
 * parameters explicitly encountered in the source statement
 * (HQL or native-SQL).
 *
 @author <a href="mailto:[email protected]">Steve Ebersole </a>
 */
public interface ExplicitParameterSpecification extends ParameterSpecification {
  public int getSourceLine();
  public int getSourceColumn();
}