Package org.eclipse.ui.dialogs
Class FilteredItemsSelectionDialog.AbstractContentProvider
- java.lang.Object
-
- org.eclipse.ui.dialogs.FilteredItemsSelectionDialog.AbstractContentProvider
-
- Enclosing class:
- FilteredItemsSelectionDialog
protected abstract class FilteredItemsSelectionDialog.AbstractContentProvider extends Object
An interface to content providers forFilterItemsSelectionDialog.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractContentProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voidadd(Object item, FilteredItemsSelectionDialog.ItemsFilter itemsFilter)Adds the item to the content provider iff the filter matches the item.
-
-
-
Method Detail
-
add
public abstract void add(Object item, FilteredItemsSelectionDialog.ItemsFilter itemsFilter)
Adds the item to the content provider iff the filter matches the item. Otherwise does nothing.- Parameters:
item- the item to additemsFilter- the filter- See Also:
FilteredItemsSelectionDialog.ItemsFilter.matchItem(Object)
-
-