Uses of Interface
pt.ist.fenixframework.DomainObject

Packages that use DomainObject
pt.ist.fenixframework   
pt.ist.fenixframework.adt.bplustree   
pt.ist.fenixframework.backend   
pt.ist.fenixframework.backend.infinispan   
pt.ist.fenixframework.backend.jvstmmem   
pt.ist.fenixframework.backend.mem   
pt.ist.fenixframework.backend.ogm   
pt.ist.fenixframework.core   
pt.ist.fenixframework.core.adt.bplustree   
pt.ist.fenixframework.core.adt.linkedlist   
pt.ist.fenixframework.core.adt.skiplist   
pt.ist.fenixframework.dml.runtime   
pt.ist.fenixframework.hibernatesearch   
pt.ist.fenixframework.txintrospector   
 

Uses of DomainObject in pt.ist.fenixframework
 

Classes in pt.ist.fenixframework that implement DomainObject
 class DomainRoot
           
 class DomainRoot_Base
           
 

Methods in pt.ist.fenixframework with type parameters of type DomainObject
static
<T extends DomainObject>
T
FenixFramework.getDomainObject(String externalId)
          Get any DomainObject given its external identifier.
 

Uses of DomainObject in pt.ist.fenixframework.adt.bplustree
 

Classes in pt.ist.fenixframework.adt.bplustree that implement DomainObject
 class AbstractNode<T extends Serializable>
          The keys comparison function should be consistent with equals.
 class AbstractNode_Base
           
 class BPlusTree<T extends Serializable>
          Implementation of a persistence-independent B+Tree.
 class BPlusTree_Base
           
 class InnerNode
          Inner node of a B+-Tree.
 class InnerNode_Base
           
 class LeafNode
           
 class LeafNode_Base
           
 

Uses of DomainObject in pt.ist.fenixframework.backend
 

Methods in pt.ist.fenixframework.backend with type parameters of type DomainObject
<T extends DomainObject>
T
BackEnd.fromOid(Object oid)
          Backend-specific method to get a DomainObject given its OID.
<T extends DomainObject>
T
BackEnd.getDomainObject(String externalId)
           
 

Uses of DomainObject in pt.ist.fenixframework.backend.infinispan
 

Classes in pt.ist.fenixframework.backend.infinispan that implement DomainObject
 class InfinispanDomainObject
           
 

Methods in pt.ist.fenixframework.backend.infinispan with type parameters of type DomainObject
<T extends DomainObject>
T
InfinispanBackEnd.fromOid(Object oid)
           
<T extends DomainObject>
T
InfinispanBackEnd.getDomainObject(String externalId)
           
 

Uses of DomainObject in pt.ist.fenixframework.backend.jvstmmem
 

Classes in pt.ist.fenixframework.backend.jvstmmem that implement DomainObject
 class JVSTMMemDomainObject
           
 

Methods in pt.ist.fenixframework.backend.jvstmmem with type parameters of type DomainObject
<T extends DomainObject>
T
JVSTMMemBackEnd.fromOid(Object oid)
           
<T extends DomainObject>
T
JVSTMMemBackEnd.getDomainObject(String externalId)
           
 

Uses of DomainObject in pt.ist.fenixframework.backend.mem
 

Classes in pt.ist.fenixframework.backend.mem that implement DomainObject
 class MemDomainObject
           
 

Methods in pt.ist.fenixframework.backend.mem with type parameters of type DomainObject
<T extends DomainObject>
T
MemBackEnd.fromOid(Object oid)
           
<T extends DomainObject>
T
MemBackEnd.getDomainObject(String externalId)
           
 

Uses of DomainObject in pt.ist.fenixframework.backend.ogm
 

Classes in pt.ist.fenixframework.backend.ogm that implement DomainObject
 class OgmDomainObject
           
 

Methods in pt.ist.fenixframework.backend.ogm with type parameters of type DomainObject
<T extends DomainObject>
T
OgmBackEnd.fromOid(Object oid)
           
<T extends DomainObject>
T
OgmBackEnd.getDomainObject(String externalId)
           
 

Uses of DomainObject in pt.ist.fenixframework.core
 

Classes in pt.ist.fenixframework.core that implement DomainObject
 class AbstractDomainObject
          This is the top-level class for every DomainObject.
 class AbstractDomainObjectAdapter
          This class contains useful code, required by concrete DomainObjects.
 

Methods in pt.ist.fenixframework.core that return DomainObject
protected  DomainObject AbstractDomainObjectAdapter.SerializedForm.fromExternalId(String externalId)
           
protected  DomainObject AbstractDomainObject.SerializedForm.fromExternalId(String externalId)
          Returns a DomainObject given its externalId.
 

Uses of DomainObject in pt.ist.fenixframework.core.adt.bplustree
 

Classes in pt.ist.fenixframework.core.adt.bplustree that implement DomainObject
 class AbstractNodeArray<T extends AbstractDomainObject>
          The keys comparison function should be consistent with equals.
 class AbstractNodeArray_Base
           
 class BPlusTreeArray<T extends AbstractDomainObject>
          Implementation of a persistence-independent B+Tree that is specifically optimized to store instances of AbstractDomainObject.
 class BPlusTreeArray_Base
           
 class InnerNodeArray
          Inner node of a B+-Tree.
 class InnerNodeArray_Base
           
 class LeafNodeArray
           
 class LeafNodeArray_Base
           
 

Uses of DomainObject in pt.ist.fenixframework.core.adt.linkedlist
 

Classes in pt.ist.fenixframework.core.adt.linkedlist that implement DomainObject
 class LinkedList<T extends AbstractDomainObject>
           
 class LinkedList_Base
           
 class ListNode<T extends AbstractDomainObject>
           
 class ListNode_Base
           
 

Uses of DomainObject in pt.ist.fenixframework.core.adt.skiplist
 

Classes in pt.ist.fenixframework.core.adt.skiplist that implement DomainObject
 class SkipList<T extends AbstractDomainObject>
           
 class SkipList_Base
           
 class SkipListNode
           
 class SkipListNode_Base
           
 

Uses of DomainObject in pt.ist.fenixframework.dml.runtime
 

Classes in pt.ist.fenixframework.dml.runtime with type parameters of type DomainObject
 class DirectRelation<C1 extends DomainObject,C2 extends DomainObject>
           
 class DirectRelation<C1 extends DomainObject,C2 extends DomainObject>
           
 class InverseRelation<C1 extends DomainObject,C2 extends DomainObject>
           
 class InverseRelation<C1 extends DomainObject,C2 extends DomainObject>
           
 interface Relation<C1 extends DomainObject,C2 extends DomainObject>
           
 interface Relation<C1 extends DomainObject,C2 extends DomainObject>
           
 class RelationAdapter<C1 extends DomainObject,C2 extends DomainObject>
           
 class RelationAdapter<C1 extends DomainObject,C2 extends DomainObject>
           
 class RelationAwareSet<E1 extends DomainObject,E2 extends DomainObject>
           
 class RelationAwareSet<E1 extends DomainObject,E2 extends DomainObject>
           
 interface RelationListener<C1 extends DomainObject,C2 extends DomainObject>
           
 interface RelationListener<C1 extends DomainObject,C2 extends DomainObject>
           
 interface Role<C1 extends DomainObject,C2 extends DomainObject>
           
 interface Role<C1 extends DomainObject,C2 extends DomainObject>
           
 class RoleEmpty<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a relation which is not navigable in the other direction.
 class RoleEmpty<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a relation which is not navigable in the other direction.
 class RoleMany<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a many-to-something relation: the side that keeps the collection corresponding to the multiplicity many.
 class RoleMany<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a many-to-something relation: the side that keeps the collection corresponding to the multiplicity many.
 class RoleOne<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a one-to-something relation: the side that keeps the single reference corresponding to the multiplicity one.
 class RoleOne<C1 extends DomainObject,C2 extends DomainObject>
          This class handles one side of a one-to-something relation: the side that keeps the single reference corresponding to the multiplicity one.
 

Uses of DomainObject in pt.ist.fenixframework.hibernatesearch
 

Method parameters in pt.ist.fenixframework.hibernatesearch with type arguments of type DomainObject
protected static void HibernateSearchSupport.updateIndex(org.hibernate.search.backend.TransactionContext context, Collection<DomainObject> objects, org.hibernate.search.backend.spi.WorkType workType)
           
 

Uses of DomainObject in pt.ist.fenixframework.txintrospector
 

Fields in pt.ist.fenixframework.txintrospector declared as DomainObject
 DomainObject TxIntrospector.RelationChangelog.first
           
 DomainObject TxIntrospector.Entry.object
           
 DomainObject TxIntrospector.RelationChangelog.second
           
 

Methods in pt.ist.fenixframework.txintrospector that return types with arguments of type DomainObject
 Collection<DomainObject> TxStats.getDirectlyModifiedObjects()
           
 Collection<DomainObject> TxIntrospector.getDirectlyModifiedObjects()
          Returns a Collection containing objects which had any of their slots modified, excluding those that only had relationship changes.
 Collection<DomainObject> TxStats.getModifiedObjects()
           
 Collection<DomainObject> TxIntrospector.getModifiedObjects()
          Returns a Collection containing both objects which had any of their slots modified and those that had relationship changes.
 Collection<DomainObject> TxStats.getNewObjects()
           
 Collection<DomainObject> TxIntrospector.getNewObjects()
          Returns a Collection containing new objects created during this transaction.
 

Methods in pt.ist.fenixframework.txintrospector with parameters of type DomainObject
 void TxStats.addModifiedObject(DomainObject object)
           
 void TxStats.addNewObject(DomainObject object)
           
 

Constructors in pt.ist.fenixframework.txintrospector with parameters of type DomainObject
TxIntrospector.Entry(DomainObject object, String attribute, Object value)
           
TxIntrospector.RelationChangelog(String relation, DomainObject first, DomainObject second, boolean remove)
           
 



Copyright © 2013. All Rights Reserved.