BestSolution.at public p2 repository
Property
at.bestsolution.framework.grid

Interface Property<T>

  • Type Parameters:
    T - the type


    public interface Property<T>
    An observable value
    Since:
    1.0
    • Method Detail

      • set

        void set(T value)
        Set the new value
        Parameters:
        value - the value
      • get

        T get()
        Get the current value
        Returns:
        the value
      • dispose

        void dispose()
        Dispose the value
      • addChangeListener

        void addChangeListener(Property.ChangeListener<T> listener)
        Attach a listener
        Parameters:
        listener - the listener
      • removeChangeListener

        void removeChangeListener(Property.ChangeListener<T> listener)
        Remove the listener
        Parameters:
        listener - the listener