Class MultiMutableSelectedState<T>
- java.lang.Object
-
- org.jungrapht.visualization.selection.AbstractMutableSelectedState<T>
-
- org.jungrapht.visualization.selection.MultiMutableSelectedState<T>
-
- All Implemented Interfaces:
ItemSelectable
,MutableSelectedState<T>
,MutableSelectedStateSink<T>
,SelectedState<T>
public class MultiMutableSelectedState<T> extends AbstractMutableSelectedState<T> implements MutableSelectedStateSink<T>
Maintains the state of what has been 'selected' in the graph. TheSets
are constructed so that their iterators will traverse them in the order in which they are selected.- Author:
- Tom Nelson
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jungrapht.visualization.selection.SelectedState
SelectedState.StateChangeListener<T>
-
-
Field Summary
Fields Modifier and Type Field Description protected Set<T>
selected
the 'selected' items-
Fields inherited from class org.jungrapht.visualization.selection.AbstractMutableSelectedState
listenerList
-
-
Constructor Summary
Constructors Constructor Description MultiMutableSelectedState()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
Clears the "selected" state from all elements.void
clear(boolean fireEvents)
Clears the "selected" state from all elements.boolean
deselect(Collection<T> elements)
deselect a collection of elementsboolean
deselect(Collection<T> elements, boolean fireEvents)
deselect a collection of elementsboolean
deselect(T element)
deselect one elementboolean
deselect(T t, boolean fireEvents)
if t is was already selected, remove itSet<T>
getSelected()
T[]
getSelectedObjects()
for the ItemSelectable interface contractboolean
isSelected(T t)
boolean
select(Collection<T> elements)
select a collection of elements to be the only selected elementsboolean
select(Collection<T> elements, boolean fireEvents)
select a collection of elements to be the only selected elementsboolean
select(T element)
Select an elementboolean
select(T element, boolean fireEvents)
select one element.-
Methods inherited from class org.jungrapht.visualization.selection.AbstractMutableSelectedState
addItemListener, fireItemStateChanged, removeItemListener
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.awt.ItemSelectable
addItemListener, removeItemListener
-
-
-
-
Method Detail
-
select
public boolean select(T element)
Select an element- Specified by:
select
in interfaceMutableSelectedState<T>
- Parameters:
element
- the element to select- Returns:
- true if the collection of selected changed
-
select
public boolean select(T element, boolean fireEvents)
Description copied from interface:MutableSelectedStateSink
select one element.- Specified by:
select
in interfaceMutableSelectedState<T>
- Specified by:
select
in interfaceMutableSelectedStateSink<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
public boolean deselect(T t, boolean fireEvents)
if t is was already selected, remove it- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Specified by:
deselect
in interfaceMutableSelectedStateSink<T>
- Parameters:
t
- item to de-selectfireEvents
- act as a sink, if true, do not fire events- Returns:
- true if the collection of selected things was modified
-
deselect
public boolean deselect(T element)
Description copied from interface:MutableSelectedState
deselect one element- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Parameters:
element
- the element to deselect- Returns:
- true is the collection of selected elements was changed
-
select
public boolean select(Collection<T> elements, boolean fireEvents)
Description copied from interface:MutableSelectedStateSink
select a collection of elements to be the only selected elements- Specified by:
select
in interfaceMutableSelectedState<T>
- Specified by:
select
in interfaceMutableSelectedStateSink<T>
fireEvents
- if false, act as a sink, if true, do not fire events- Returns:
- true if the collection of selected elements was changed
-
select
public boolean select(Collection<T> elements)
Description copied from interface:MutableSelectedState
select a collection of elements to be the only selected elements- Specified by:
select
in interfaceMutableSelectedState<T>
- Returns:
- true if the collection of selected elements was changed
-
deselect
public boolean deselect(Collection<T> elements, boolean fireEvents)
Description copied from interface:MutableSelectedStateSink
deselect a collection of elements- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Specified by:
deselect
in interfaceMutableSelectedStateSink<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
-
deselect
public boolean deselect(Collection<T> elements)
Description copied from interface:MutableSelectedState
deselect a collection of elements- Specified by:
deselect
in interfaceMutableSelectedState<T>
- Parameters:
elements
- the elements to deselect- Returns:
- true if the collection of selected elements was changed
-
clear
public void clear(boolean fireEvents)
Description copied from interface:MutableSelectedStateSink
Clears the "selected" state from all elements.- Specified by:
clear
in interfaceMutableSelectedState<T>
- Specified by:
clear
in interfaceMutableSelectedStateSink<T>
- Parameters:
fireEvents
- if false, act as a sink, if true, do not fire events
-
clear
public void clear()
Description copied from interface:MutableSelectedState
Clears the "selected" state from all elements.- Specified by:
clear
in interfaceMutableSelectedState<T>
-
getSelected
public Set<T> getSelected()
- Specified by:
getSelected
in interfaceSelectedState<T>
- Returns:
- all selected elements.
-
isSelected
public boolean isSelected(T t)
- Specified by:
isSelected
in interfaceSelectedState<T>
-
getSelectedObjects
public T[] getSelectedObjects()
for the ItemSelectable interface contract- Specified by:
getSelectedObjects
in interfaceItemSelectable
-
-