Oracle Fusion Middleware Java API Reference for Oracle TopLink
11g Release 1 (11.1.1)

B32476-03

oracle.toplink.mappings.transformers
Class FieldTransformerAdapter

java.lang.Object
  extended by oracle.toplink.mappings.transformers.FieldTransformerAdapter
All Implemented Interfaces:
java.io.Serializable, FieldTransformer
Direct Known Subclasses:
ConstantTransformer

public class FieldTransformerAdapter
extends java.lang.Object
implements FieldTransformer

Purpose: Provides an empty implementation of FieldTransformer. Users who do not require the full FieldTransformer API can subclass this class and implement only the methods required.

Since:
10
See Also:
oracle.toplink.mappings.FieldTransformer, Serialized Form

Constructor Summary
FieldTransformerAdapter()
           
 
Method Summary
 java.lang.Object buildFieldValue(java.lang.Object object, java.lang.String fieldName, Session session)
           
 void initialize(AbstractTransformationMapping mapping)
          Initialize this transformer.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FieldTransformerAdapter

public FieldTransformerAdapter()
Method Detail

initialize

public void initialize(AbstractTransformationMapping mapping)
Description copied from interface: oracle.toplink.mappings.transformers.FieldTransformer
Initialize this transformer. Only required if the user needs some special information from the mapping in order to do the transformation

Specified by:
initialize in interface FieldTransformer
Parameters:
mapping - - the mapping this transformer is associated with.

buildFieldValue

public java.lang.Object buildFieldValue(java.lang.Object object,
                                        java.lang.String fieldName,
                                        Session session)
Specified by:
buildFieldValue in interface FieldTransformer
Parameters:
object - - an instance of the domain class which contains the attribute
fieldName - - the name of the field being transformed. Used if the user wants to use this transformer for multiple fields.
session - - the current session
Returns:
- The value to be written for the field associated with this transformer

Copyright © 1998, 2010, Oracle. All Rights Reserved.