Uses of Interface
org.objectweb.jorm.api.PAccessor

Packages that use PAccessor
org.objectweb.jorm.api   
org.objectweb.jorm.facility.naming.generator   
org.objectweb.jorm.facility.naming.polymorphid   
org.objectweb.jorm.genclass.lib   
org.objectweb.jorm.lib   
org.objectweb.jorm.mapper.fos.genclass   
org.objectweb.jorm.mapper.rdb.genclass   
 

Uses of PAccessor in org.objectweb.jorm.api
 

Subinterfaces of PAccessor in org.objectweb.jorm.api
 interface PAccessorGen
          The PAccessorGen interface defines a generic accessor to be used by persistent bindings to access persistent variable within memory instances.
 interface PAccessorGenClass
          Deprecated. Renamed into PGenClassAccessor
 interface PGenClassAccessor
          The PGenClassAccessor interface defines the Accessor for all generic classes.
 

Methods in org.objectweb.jorm.api with parameters of type PAccessor
 void PSerializable.read(PClassMapping pcm, PAccessor pa)
          Read all the fields of the serializable object and put it in the PAccessor pa.
 void PSerializable.write(PClassMapping pcm, PAccessor pa)
          Write the PAccessor in the serializable object.
 void PClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa)
          It reads the data store instance designated by the PName of a binding and transfers each attribute value to the accessor object.
 void PClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx)
          It reads the data store instance designated by the PName of a binding and transfers each attribute value to the accessor object.
 void PClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx, boolean forUpdate)
           
 void PClassMapping.write(PBinding pb, java.lang.Object conn, PAccessor pa)
          It transfers each attribute value taken from the PAccessor object to the data store instance designated by the PName associated with a binding.
 void PBinding.read(java.lang.Object conn, PAccessor pa)
          It reads the data store instance designated by the PName of this binding and transfers each attribute value to the accessor object.
 void PBinding.read(java.lang.Object conn, PAccessor pa, java.lang.Object txctx)
          It reads the data store instance designated by the PName of this binding and transfers each attribute value to the accessor object.
 void PBinding.read(java.lang.Object conn, PAccessor pa, java.lang.Object txctx, boolean forUpdate)
           
 void PBinding.write(java.lang.Object conn, PAccessor pa)
          It transfers each attribute value taken from the PAccessor object to the data store instance designated by the PName associated with this binding.
 

Uses of PAccessor in org.objectweb.jorm.facility.naming.generator
 

Classes in org.objectweb.jorm.facility.naming.generator that implement PAccessor
 class LongGenIncr
          Implements a long generator (LongGen) that produces new long ID merely by incrementing a persistent long variable.
 

Uses of PAccessor in org.objectweb.jorm.facility.naming.polymorphid
 

Classes in org.objectweb.jorm.facility.naming.polymorphid that implement PAccessor
 class PolymorphIdBinderInfo
          Implements a binder that manages polymorphic names.
 

Uses of PAccessor in org.objectweb.jorm.genclass.lib
 

Methods in org.objectweb.jorm.genclass.lib with parameters of type PAccessor
 void GenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx)
           
 void GenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx, boolean forUpdate)
           
 

Uses of PAccessor in org.objectweb.jorm.lib
 

Classes in org.objectweb.jorm.lib that implement PAccessor
 class PSerializableImpl
          This class is incomplete implementation of PSerializable interface.
 

Methods in org.objectweb.jorm.lib with parameters of type PAccessor
abstract  void PSerializableImpl.read(PClassMapping pcm, PAccessor pa)
           
abstract  void PSerializableImpl.write(PClassMapping pcm, PAccessor pa)
           
 void PBindingImpl.read(java.lang.Object conn, PAccessor pa)
           
 void PBindingImpl.read(java.lang.Object conn, PAccessor pa, java.lang.Object txctx)
           
 void PBindingImpl.read(java.lang.Object conn, PAccessor pa, java.lang.Object txctx, boolean forUpdate)
           
 void PBindingImpl.write(java.lang.Object conn, PAccessor pa)
           
 

Uses of PAccessor in org.objectweb.jorm.mapper.fos.genclass
 

Methods in org.objectweb.jorm.mapper.fos.genclass with parameters of type PAccessor
 void FosGenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa)
           
 void FosGenClassMapping.write(PBinding pb, java.lang.Object conn, PAccessor pa)
           
 

Uses of PAccessor in org.objectweb.jorm.mapper.rdb.genclass
 

Methods in org.objectweb.jorm.mapper.rdb.genclass with parameters of type PAccessor
 void RdbGenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa)
           
 void RdbGenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx)
           
 void RdbGenClassMapping.read(PBinding pb, java.lang.Object conn, PAccessor pa, java.lang.Object txctx, boolean forUpudate)
           
 void RdbGenClassMapping.write(PBinding pb, java.lang.Object conn, PAccessor pa)