org.eclipse.core.databinding.observable.set
Interface IObservableSet
- All Superinterfaces:
- Collection, IObservable, IObservableCollection, Set
- All Known Subinterfaces:
- IViewerObservableSet
- All Known Implementing Classes:
- AbstractObservableSet, ObservableSet
- public interface IObservableSet
- extends Set, IObservableCollection
A set whose changes can be tracked by set change listeners.
- Since:
- 1.0
- See Also:
AbstractObservableSet
,
ObservableSet
- Restriction
- This interface is not intended to be implemented by clients.
Clients should instead subclass one of the classes that
implement this interface. Note that direct implementers of this
interface outside of the framework will be broken in future
releases when methods are added to this interface.
- Restriction
- This interface is not intended to be extended by clients.
Methods inherited from interface java.util.Set |
clear |
addSetChangeListener
public void addSetChangeListener(ISetChangeListener listener)
- Parameters:
listener
-
removeSetChangeListener
public void removeSetChangeListener(ISetChangeListener listener)
- Parameters:
listener
-
getElementType
public Object getElementType()
- Specified by:
getElementType
in interface IObservableCollection
- Returns:
- the element type or
null
if untyped
size
public int size()
- Specified by:
size
in interface Set
- "TrackedGetter"
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Set
- "TrackedGetter"
contains
public boolean contains(Object o)
- Specified by:
contains
in interface Set
- "TrackedGetter"
iterator
public Iterator iterator()
- Specified by:
iterator
in interface Set
- "TrackedGetter"
toArray
public Object[] toArray()
- Specified by:
toArray
in interface Set
- "TrackedGetter"
toArray
public Object[] toArray(Object[] a)
- Specified by:
toArray
in interface Set
- "TrackedGetter"
add
public boolean add(Object o)
- Specified by:
add
in interface Set
- "TrackedGetter"
remove
public boolean remove(Object o)
- Specified by:
remove
in interface Set
- "TrackedGetter"
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAll
in interface Set
- "TrackedGetter"
addAll
public boolean addAll(Collection c)
- Specified by:
addAll
in interface Set
- "TrackedGetter"
retainAll
public boolean retainAll(Collection c)
- Specified by:
retainAll
in interface Set
- "TrackedGetter"
removeAll
public boolean removeAll(Collection c)
- Specified by:
removeAll
in interface Set
- "TrackedGetter"
equals
public boolean equals(Object o)
- Specified by:
equals
in interface Set
- "TrackedGetter"
hashCode
public int hashCode()
- Specified by:
hashCode
in interface Set
- "TrackedGetter"
Guidelines for using Eclipse APIs.
Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.