org.hibernate.mapping
Class DependantValue

java.lang.Object
  extended byorg.hibernate.mapping.SimpleValue
      extended byorg.hibernate.mapping.DependantValue
All Implemented Interfaces:
KeyValue, Serializable, Value

public class DependantValue
extends SimpleValue

A value which is "typed" by reference to some other value (for example, a foreign key is typed by the referenced primary key).

Author:
Gavin King
See Also:
Serialized Form

Constructor Summary
DependantValue(Table table, KeyValue prototype)
           
 
Method Summary
 Object accept(ValueVisitor visitor)
           
 Type getType()
           
 boolean isNullable()
           
 boolean isUpdateable()
           
 void setNullable(boolean nullable)
           
 void setTypeUsingReflection(String className, String propertyName)
           
 void setUpdateable(boolean updateable)
           
 
Methods inherited from class org.hibernate.mapping.SimpleValue
addColumn, addFormula, createForeignKey, createForeignKeyOfEntity, createIdentifierGenerator, getColumnInsertability, getColumnIterator, getColumnSpan, getColumnUpdateability, getConstraintColumns, getFetchMode, getForeignKeyName, getIdentifierGeneratorProperties, getIdentifierGeneratorStrategy, getNullValue, getTable, getTypeName, getTypeParameters, hasFormula, isAlternateUniqueKey, isCascadeDeleteEnabled, isIdentityColumn, isSimpleValue, isTypeSpecified, isValid, setAlternateUniqueKey, setCascadeDeleteEnabled, setForeignKeyName, setIdentifierGeneratorProperties, setIdentifierGeneratorStrategy, setNullValue, setTable, setTypeName, setTypeParameters, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DependantValue

public DependantValue(Table table,
                      KeyValue prototype)
Method Detail

getType

public Type getType()
             throws MappingException
Specified by:
getType in interface Value
Overrides:
getType in class SimpleValue
Throws:
MappingException

setTypeUsingReflection

public void setTypeUsingReflection(String className,
                                   String propertyName)
Specified by:
setTypeUsingReflection in interface Value
Overrides:
setTypeUsingReflection in class SimpleValue

accept

public Object accept(ValueVisitor visitor)
Specified by:
accept in interface Value
Overrides:
accept in class SimpleValue

isNullable

public boolean isNullable()
Specified by:
isNullable in interface Value
Overrides:
isNullable in class SimpleValue

setNullable

public void setNullable(boolean nullable)

isUpdateable

public boolean isUpdateable()
Specified by:
isUpdateable in interface KeyValue
Overrides:
isUpdateable in class SimpleValue

setUpdateable

public void setUpdateable(boolean updateable)