blob: da3ed9dbd5267696286bec508c898500d4d18466 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.jface.internal.databinding.provisional.observable.mapping;
import java.util.Set;
import org.eclipse.jface.internal.databinding.provisional.observable.IDiff;
/**
* @since 1.0
*
*/
public abstract class MappingDiff implements IDiff {
/**
* @return the set of elements for which the mapping value has changed
*/
public abstract Set getElements();
/**
* @return an array containing the affected indices.
*/
public abstract int[] getAffectedIndices();
/**
* @param element
* @param indices
* @return the old values of the mapping for the given element at the given
* indices.
*/
public abstract Object[] getOldMappingValues(Object element, int[] indices);
/**
* @param element
* @param indices
* @return the new value of the mapping for the given element
*/
public abstract Object[] getNewMappingValues(Object element, int[] indices);
}