blob: 67b3262a40365775d1ca88463e6fe8b49786d493 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.sessions.changesets;
import java.util.Vector;
/**
* <p>
* <b>Purpose</b>: To provide API into the EISCollectionChangeSet.
* <p>
* <b>Description</b>: Capture the changes for an ordered collection where
* the entire collection is simply replaced if it has changed.
* <p>
*/
public interface EISOrderedCollectionChangeRecord extends ChangeRecord {
/**
* ADVANCED:
* Return the indexes into the new collection of
* the elements that were added.
*/
int[] getAddIndexes();
/**
* ADVANCED:
* Return the entries for all the elements added to the new collection.
* The contents of this collection is determined by the mapping that
* populated it
*/
Vector getAdds();
/**
* ADVANCED:
* ADVANCED:
* Return the indexes of the elements that were simply moved
* within the collection.
* Each element in the outer array is another two-element
* array where the first entry [0] is the index of the object in
* the old collection and the second entry [1] is the index
* of the object in the new collection. These two indexes
* can be equal.
*/
int[][] getMoveIndexPairs();
/**
* ADVANCED:
* Return the entries for all the elements that were simply shuffled
* within the collection.
* The contents of this collection is determined by the mapping that
* populated it
*/
Vector getMoves();
/**
* ADVANCED:
* Return the entries for all the elements in the new collection.
* The contents of this collection is determined by the mapping that
* populated it
*/
Vector getNewCollection();
/**
* ADVANCED:
* Return the indexes into the old collection of
* the elements that were removed.
*/
int[] getRemoveIndexes();
/**
* ADVANCED:
* Return the entries for all the elements removed from the old collection.
* The contents of this collection is determined by the mapping that
* populated it
*/
Vector getRemoves();
/**
* ADVANCED:
* Return whether any changes have been recorded with the change record.
*/
boolean hasChanges();
}