Package dk.gtz.graphedit.viewmodel
Interface ISelectable
- All Known Implementing Classes:
ViewModelEdge
,ViewModelVertex
public interface ISelectable
Interface for elements that are selectable through the selection system
-
Method Details
-
getIsSelected
javafx.beans.property.BooleanProperty getIsSelected()Get the observable property that determines if the object is selected or not. This is useful if you want to add event listeners to handle when the property changes.- Returns:
true
if the object is currently selected, otherwisefalse
-
select
void select()Select the object -
deselect
void deselect()Deselect the object
-