Interface ISelectable

All Known Implementing Classes:
ViewModelEdge, ViewModelVertex

public interface ISelectable
Interface for elements that are selectable through the selection system
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deselect the object
    javafx.beans.property.BooleanProperty
    Get the observable property that determines if the object is selected or not.
    void
    Select the object
  • 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, otherwise false
    • select

      void select()
      Select the object
    • deselect

      void deselect()
      Deselect the object