All Implemented Interfaces:
Iterable, Collection, Set, IObservable, IObservableCollection, IObservableSet

@Deprecated public class MappedSet extends ObservableSet
Deprecated.
This class is deprecated.

This class is thread safe. All state accessing methods must be invoked from the current realm. Methods for adding and removing listeners may be invoked from any thread.

Since:
1.0
  • Constructor Details

    • MappedSet

      public MappedSet(IObservableSet input, IObservableMap map)
      Deprecated.
      Parameters:
      input - input set with keys from the map
      map - the map to map
  • Method Details

    • handleAddition

      protected boolean handleAddition(Object mapValue)
      Deprecated.
      Parameters:
      mapValue - map value to add
      Returns:
      true if the given mapValue was an addition
    • handleRemoval

      protected boolean handleRemoval(Object mapValue)
      Deprecated.
      Parameters:
      mapValue - map value to remove
      Returns:
      true if the given mapValue has been removed
    • dispose

      public void dispose()
      Deprecated.
      Description copied from interface: IObservable
      Disposes of this observable object, removing all listeners registered with this object, and all listeners this object might have registered on other objects.
      Specified by:
      dispose in interface IObservable
      Overrides:
      dispose in class AbstractObservable
    • addListener

      protected void addListener(Object listenerType, IObservablesListener listener)
      Parameters:
      listenerType - arbitrary object to identify a type of the listener
      listener - the listener to add; not null
    • removeListener

      protected void removeListener(Object listenerType, IObservablesListener listener)
      Parameters:
      listenerType - arbitrary object to identify a type of the listener
      listener - the listener to remove; not null
    • hasListeners

      protected boolean hasListeners()
    • fireEvent

      protected void fireEvent(ObservableEvent event)
    • firstListenerAdded

      protected void firstListenerAdded()
    • lastListenerRemoved

      protected void lastListenerRemoved()
    • getRealm

      public Realm getRealm()
      Returns:
      Returns the realm.
    • clone

      protected Object clone() throws CloneNotSupportedException
      Overrides:
      clone in class Object
      Throws:
      CloneNotSupportedException