Java tutorial
/******************************************************************************* * Copyright (c) 2009, 2015 Matthew Hall and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * Matthew Hall - initial API and implementation (bug 238296) ******************************************************************************/ package org.eclipse.jface.databinding.viewers; import org.eclipse.jface.viewers.StructuredViewer; /** * A strategy interface for updating the elements in a {@link StructuredViewer}. * Many structured viewer classes have similar methods for adding and removing * elements, few of which are defined in common ancestor classes. This interface * serves as a universal adapter for updating the elements in a viewer * * @param <E> type of the elements in the updated viewer * * @since 1.3 * @see ObservableListContentProvider#ObservableListContentProvider(IViewerUpdater) * @see ObservableSetContentProvider#ObservableSetContentProvider(IViewerUpdater) */ public interface IViewerUpdater<E> { /** * Insert the element into the viewer at the specified position. * * @param element * the element to add * @param position * the position of the element */ public void insert(E element, int position); /** * Remove the element from the viewer * * @param element * the element to remove * @param position * the position of the element */ public void remove(E element, int position); /** * Replace the specified element at the given position with the new element. * * @param oldElement * the element being replaced * @param newElement * the element that replaces <code>oldElement</code> * @param position * the position of the element being replaced. */ public void replace(E oldElement, E newElement, int position); /** * Moves the specified element from the specified old position to the * specified new position. No action is taken if the viewer has a sorter or * filter(s). * * @param element * the element being moved * @param oldPosition * the position of the element before it is moved * @param newPosition * the position of the element after it is moved */ public void move(E element, int oldPosition, int newPosition); /** * Adds the elements to the viewer. * * @param elements * the elements to add */ public void add(E[] elements); /** * Removes the elements from the viewer * * @param elements * the elements to remove */ public void remove(E[] elements); }