Class Observable<T>

java.lang.Object
com.luciad.utils.Observable<T>
Type Parameters:
T - the type to hold

public class Observable<T> extends Object
This class makes it possible to hold and observe a value that can change over time.
  • Constructor Details Link icon

    • Observable Link icon

      public Observable(T initialValue)
      Constructs the observable with an initial value.
      Parameters:
      initialValue - the initial value.
    • Observable Link icon

      public Observable(T initialValue, @NotNull Class<T> clazz)
  • Method Details Link icon