FileDocCategorySizeDatePackage
AggregateObjectChangeSet.javaAPI DocGlassfish v2 API3030Tue May 22 16:54:42 BST 2007oracle.toplink.essentials.internal.sessions

AggregateObjectChangeSet

public class AggregateObjectChangeSet extends ObjectChangeSet

Fields Summary
Constructors Summary
public AggregateObjectChangeSet()
The default constructor is used only by SDK XML project for mapping ObjectChangeSet

        super();
    
public AggregateObjectChangeSet(Object cloneObject, UnitOfWorkChangeSet parent, boolean isNew)
This constructor is used to create an ObjectChangeSet that represents an aggregate object.

        super(cloneObject, parent, isNew);
    
public AggregateObjectChangeSet(Vector primaryKey, Class classType, Object cloneObject, UnitOfWorkChangeSet parent, boolean isNew)
This constructor is used to create an ObjectChangeSet that represents a regular object.

        super(primaryKey, classType, cloneObject, parent, isNew);
    
Methods Summary
public oracle.toplink.essentials.internal.identitymaps.CacheKeyCacheKey()

        return null;
    
public booleanisAggregate()

        return true;