FileDocCategorySizeDatePackage
NamedParameterDescriptor.javaAPI DocHibernate 3.2.5844Wed Jun 28 08:25:00 BST 2006org.hibernate.engine.query

NamedParameterDescriptor

public class NamedParameterDescriptor extends Object implements Serializable
Descriptor regarding a named parameter.
author
Steve Ebersole

Fields Summary
private final String
name
private final org.hibernate.type.Type
expectedType
private final int[]
sourceLocations
private final boolean
jpaStyle
Constructors Summary
public NamedParameterDescriptor(String name, org.hibernate.type.Type expectedType, int[] sourceLocations, boolean jpaStyle)

		this.name = name;
		this.expectedType = expectedType;
		this.sourceLocations = sourceLocations;
		this.jpaStyle = jpaStyle;
	
Methods Summary
public org.hibernate.type.TypegetExpectedType()

		return expectedType;
	
public java.lang.StringgetName()

		return name;
	
public int[]getSourceLocations()

		return sourceLocations;
	
public booleanisJpaStyle()

		return jpaStyle;