blob: 8b377c7f0b89ceb996669b992c2a2aa64f0c0c0e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.jdt.internal.ui.wizards.dialogfields;
/**
* Change listener used by <code>ListDialogField</code> and <code>CheckedListDialogField</code>
*
* @param <E> the type of the list elements
*/
public interface IListAdapter<E> {
/**
* A button from the button bar has been pressed.
*
* @param field the dialog field
* @param index the button index
*/
void customButtonPressed(ListDialogField<E> field, int index);
/**
* The selection of the list has changed.
*
* @param field the dialog field
*/
void selectionChanged(ListDialogField<E> field);
/**
* An entry in the list has been double clicked
*
* @param field the dialog field
*/
void doubleClicked(ListDialogField<E> field);
}