Uses of Interface
pivot.wtk.effects.Decorator

Packages that use Decorator
pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
pivot.wtk.effects Contains classes supporting visual effects such as blurs, reflections, and drop shadows. 
 

Uses of Decorator in pivot.wtk
 

Methods in pivot.wtk that return Decorator
 Decorator Component.DecoratorSequence.get(int index)
           
 Decorator Component.DecoratorSequence.update(int index, Decorator decorator)
           
 

Methods in pivot.wtk that return types with arguments of type Decorator
 java.util.Iterator<Decorator> Component.DecoratorSequence.iterator()
           
 Sequence<Decorator> Component.DecoratorSequence.remove(int index, int count)
           
 Sequence<Decorator> Component.DecoratorSequence.removeAll()
           
 

Methods in pivot.wtk with parameters of type Decorator
 int Component.DecoratorSequence.add(Decorator decorator)
           
 void ComponentDecoratorListener.decoratorUpdated(Component component, int index, Decorator previousDecorator)
          Called when a decorator has been updated in a component's decorator sequence.
 int Component.DecoratorSequence.indexOf(Decorator decorator)
           
 void Component.DecoratorSequence.insert(Decorator decorator, int index)
           
 int Component.DecoratorSequence.remove(Decorator decorator)
           
 Decorator Component.DecoratorSequence.update(int index, Decorator decorator)
           
 

Method parameters in pivot.wtk with type arguments of type Decorator
 void ComponentDecoratorListener.decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
          Called when decorators have been removed from a component's decorator sequence.
 

Uses of Decorator in pivot.wtk.effects
 

Classes in pivot.wtk.effects that implement Decorator
 class BlurDecorator
          Decorator that applies a blur to a component.
 class ClipDecorator
          Decorator that adds a rectangular region to the current clip.
 class DropShadowDecorator
          Decorator that adds a drop shadows to a component.
 class FadeDecorator
          Decorator that applies an opacity to a component.
 class GrayscaleDecorator
          Decorator that applies a grayscale conversion to a component.
 class ReflectionDecorator
          Decorator that paints a reflection of a component.
 class SaturationDecorator
          Decorator that modifies the color saturation of a component.
 class ScaleDecorator
          Decorator that scales the painting of a component along the X and/or Y axes.
 class ShadeDecorator
          Decorator that applies a "shade" to a component.
 class TagDecorator
          Decorator that allows a caller to attach a "tag" visual to a component.
 class TranslationDecorator
          Decorator that translates the paint origin of its component.
 class WatermarkDecorator
          Decorator that paints a watermark effect over a component.