Uses of Interface
de.cau.cs.kieler.core.util.ICondition

Packages that use ICondition
de.cau.cs.kieler.core.ui.figures Package for commonly used Draw2D figures. 
de.cau.cs.kieler.core.ui.util Utility classes for usage in the Eclipse UI. 
de.cau.cs.kieler.core.util General purpose utility classes in the style of java.util
 

Uses of ICondition in de.cau.cs.kieler.core.ui.figures
 

Methods in de.cau.cs.kieler.core.ui.figures with parameters of type ICondition
protected  void AttributeAwareConnection.addConditionalDecoration(RotatableDecoration sourceDeco, RotatableDecoration targetDeco, ICondition<EObject> condition)
          Adds a decoration with associated condition.
protected  void AttributeAwareSwitchFigure.addConditionalFigure(IFigure figure, ICondition<EObject> condition)
          Adds a figure with associated condition.
 

Uses of ICondition in de.cau.cs.kieler.core.ui.util
 

Classes in de.cau.cs.kieler.core.ui.util that implement ICondition
 class FeatureValueCondition
          A condition that evaluates a feature of an EOject.
 class ListSizeCondition
          A condition that checks whether a featured list of an EObject has a certain size.
 

Uses of ICondition in de.cau.cs.kieler.core.util
 

Classes in de.cau.cs.kieler.core.util that implement ICondition
 class CompoundCondition<T>
          A condition that is composed of a set of other conditions.
 

Constructors in de.cau.cs.kieler.core.util with parameters of type ICondition
CompoundCondition(ICondition<T>[] theconditions)
          Creates a compound condition from an array of conditions.
FilteredIterator.Iterable(List<E> thewrappedList, ICondition<E> thecondition)
          Creates an iterable for a given list and a condition.
FilteredIterator(ListIterator<E> thewrappedIter, ICondition<E> thecondition)
          Creates a filtered iterator for a given list iterator and a condition.
 

Constructor parameters in de.cau.cs.kieler.core.util with type arguments of type ICondition
CompoundCondition(Collection<ICondition<T>> theconditions)
          Creates a compound condition from a collection of conditions.