Interface MutableSelectedStateSink<T>
-
- All Superinterfaces:
ItemSelectable
,MutableSelectedState<T>
,SelectedState<T>
- All Known Implementing Classes:
MultiMutableSelectedState
public interface MutableSelectedStateSink<T> extends MutableSelectedState<T>, ItemSelectable
An interface for classes that keep track of the selected state of T objects.- Author:
- Tom Nelson
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.selection.SelectedState
SelectedState.StateChangeListener<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
clear(boolean fireEvents)
Clears the "selected" state from all elements.boolean
deselect(Collection<T> elements, boolean fireEvents)
deselect a collection of elementsboolean
deselect(T element, boolean fireEvents)
deselect one elementboolean
select(Collection<T> elements, boolean fireEvents)
select a collection of elements to be the only selected elementsboolean
select(T element, boolean fireEvents)
select one element.-
Methods inherited from interface java.awt.ItemSelectable
addItemListener, getSelectedObjects, removeItemListener
-
Methods inherited from interface org.jungrapht.visualization.selection.MutableSelectedState
clear, deselect, deselect, select, select
-
Methods inherited from interface org.jungrapht.visualization.selection.SelectedState
getSelected, isSelected
-
-
-
-
Method Detail
-
select
boolean select(T element, boolean fireEvents)
select one element.- Specified by:
select
in interfaceMutableSelectedState<T>
- Parameters:
element
- the element to selectfireEvents
- if false, act as a sink, if true, do not fire events- Returns:
- true if the collection of selected elements was changed
-
deselect
boolean deselect(T element, boolean fireEvents)
deselect one element- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Parameters:
element
- the element to deselectfireEvents
- act as a sink, if true, do not fire events- Returns:
- true is the collection of selected elements was changed
-
select
boolean select(Collection<T> elements, boolean fireEvents)
select a collection of elements to be the only selected elements- Specified by:
select
in interfaceMutableSelectedState<T>
- Parameters:
elements
-fireEvents
- if false, act as a sink, if true, do not fire events- Returns:
- true if the collection of selected elements was changed
-
deselect
boolean deselect(Collection<T> elements, boolean fireEvents)
deselect a collection of elements- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Parameters:
elements
- the elements to deselectfireEvents
- if false, act as a sink, if true, do not fire events- Returns:
- true if the collection of selected elements was changed
-
clear
void clear(boolean fireEvents)
Clears the "selected" state from all elements.- Specified by:
clear
in interfaceMutableSelectedState<T>
- Parameters:
fireEvents
- if false, act as a sink, if true, do not fire events
-
-