Uses of Interface
org.apache.pivot.wtk.effects.Decorator

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

Uses of Decorator in org.apache.pivot.wtk
 

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

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

Methods in org.apache.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.
 void ComponentDecoratorListener.Adapter.decoratorUpdated(Component component, int index, Decorator previousDecorator)
           
 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 org.apache.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.
 void ComponentDecoratorListener.Adapter.decoratorsRemoved(Component component, int index, Sequence<Decorator> decorators)
           
 

Uses of Decorator in org.apache.pivot.wtk.effects
 

Classes in org.apache.pivot.wtk.effects that implement Decorator
 class BaselineDecorator
          Displays a component's baseline.
 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 OverlayDecorator
          Decorator that overlays a component on top of another component.
 class ReflectionDecorator
          Decorator that paints a reflection of a component.
 class RotationDecorator
          Decorator that rotates a component about its center.
 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.