Class PropertyUtils

java.lang.Object
cz.masci.springfx.mvci.util.property.PropertyUtils

public class PropertyUtils extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final javafx.beans.property.BooleanProperty
     
    static final javafx.beans.property.BooleanProperty
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    javafx.beans.property.BooleanProperty
    not(javafx.beans.property.ReadOnlyBooleanProperty source)
    This method returns new boolean property which listen to source property change and set own value to the negation of the source property change.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • FALSE_PROPERTY

      public static final javafx.beans.property.BooleanProperty FALSE_PROPERTY
    • TRUE_PROPERTY

      public static final javafx.beans.property.BooleanProperty TRUE_PROPERTY
  • Constructor Details

    • PropertyUtils

      public PropertyUtils()
  • Method Details

    • not

      public javafx.beans.property.BooleanProperty not(javafx.beans.property.ReadOnlyBooleanProperty source)
      This method returns new boolean property which listen to source property change and set own value to the negation of the source property change.
      Parameters:
      source - Source boolean property this property is listening to
      Returns:
      Created boolean property