blob: 39fcc6719c814ff50870432e502fb7407ba89424 [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.cdt.debug.internal.ui.dialogfields;
/**
* Change listener used by <code>ListDialogField</code> and <code>CheckedListDialogField</code>
*/
public interface IListAdapter {
/**
* A button from the button bar has been pressed.
*/
void customButtonPressed(DialogField field, int index);
/**
* The selection of the list has changed.
*/
void selectionChanged(DialogField field);
}