org.hibernate.property
Class Dom4jAccessor.Dom4jGetter

java.lang.Object
  extended by org.hibernate.property.Dom4jAccessor.Dom4jGetter
All Implemented Interfaces:
Serializable, Getter
Direct Known Subclasses:
Dom4jAccessor.AttributeGetter, Dom4jAccessor.ElementAttributeGetter, Dom4jAccessor.ElementGetter, Dom4jAccessor.TextGetter
Enclosing class:
Dom4jAccessor

public abstract static class Dom4jAccessor.Dom4jGetter
extends Object
implements Getter

Defines the strategy for getting property values out of a dom4j Node.

See Also:
Serialized Form

Field Summary
protected  SessionFactoryImplementor factory
           
protected  Type propertyType
           
 
Method Summary
 Object getForInsert(Object owner, Map mergeMap, SessionImplementor session)
          Get the property value from the given owner instance.
 Member getMember()
          Retrieve the member to which this property maps.
 Method getMethod()
          Retrieve the getter-method.
 String getMethodName()
          Retrieve the getter-method name.
 Class getReturnType()
          Retrieve the declared Java type
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.hibernate.property.Getter
get
 

Field Detail

propertyType

protected final Type propertyType

factory

protected final SessionFactoryImplementor factory
Method Detail

getForInsert

public Object getForInsert(Object owner,
                           Map mergeMap,
                           SessionImplementor session)
                    throws HibernateException
Description copied from interface: Getter
Get the property value from the given owner instance.

Specified by:
getForInsert in interface Getter
Parameters:
owner - The instance containing the value to be retreived.
mergeMap - a map of merged persistent instances to detached instances
session - The session from which this request originated.
Returns:
The extracted value.
Throws:
HibernateException

getReturnType

public Class getReturnType()
Retrieve the declared Java type

Specified by:
getReturnType in interface Getter
Returns:
The declared java type.

getMember

public Member getMember()
Retrieve the member to which this property maps. This might be the field or it might be the getter method.

Specified by:
getMember in interface Getter
Returns:
The mapped member.

getMethodName

public String getMethodName()
Retrieve the getter-method name.

Optional operation (return null)

Specified by:
getMethodName in interface Getter
Returns:
The name of the getter method, or null.

getMethod

public Method getMethod()
Retrieve the getter-method.

Optional operation (return null)

Specified by:
getMethod in interface Getter
Returns:
The getter method, or null.


Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.