Uses of Interface
org.apache.myfaces.trinidadinternal.image.painter.PaintContext

Packages that use PaintContext
org.apache.myfaces.trinidadinternal.image   
org.apache.myfaces.trinidadinternal.image.laf.browser   
org.apache.myfaces.trinidadinternal.image.painter   
 

Uses of PaintContext in org.apache.myfaces.trinidadinternal.image
 

Methods in org.apache.myfaces.trinidadinternal.image that return PaintContext
protected  PaintContext PainterImageRenderer.createPaintContext(ImageContext imageContext, java.awt.image.BufferedImage image, java.util.Map<java.lang.Object,java.lang.Object> requestedProperties, java.util.Map<java.lang.Object,java.lang.Object> responseProperties)
           
 

Methods in org.apache.myfaces.trinidadinternal.image with parameters of type PaintContext
protected  void PainterImageRenderer.disposePaintContext(PaintContext context)
           
 

Uses of PaintContext in org.apache.myfaces.trinidadinternal.image.laf.browser
 

Methods in org.apache.myfaces.trinidadinternal.image.laf.browser that return PaintContext
protected  PaintContext CompositeButtonImageRenderer.createPaintContext(ImageContext imageContext, java.awt.image.BufferedImage image, java.util.Map<java.lang.Object,java.lang.Object> requestedProperties, java.util.Map<java.lang.Object,java.lang.Object> responseProperties)
           
protected  PaintContext ButtonImageRenderer.createPaintContext(ImageContext imageContext, java.awt.image.BufferedImage image, java.util.Map<java.lang.Object,java.lang.Object> requestedProperties, java.util.Map<java.lang.Object,java.lang.Object> responseProperties)
           
 

Methods in org.apache.myfaces.trinidadinternal.image.laf.browser with parameters of type PaintContext
protected  void CompositeButtonImageRenderer.disposePaintContext(PaintContext context)
           
protected  ImmInsets ButtonPainter.getOwnInsets(PaintContext context)
          Returns the insets of just the ButtonPainter.
protected  ImmInsets CompositeButtonPainter.getOwnInsets(PaintContext context)
           
protected  void ButtonPainter.paintBorder(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paint just the border of the ButtonPainter.
protected  void CompositeButtonPainter.paintBorder(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
           
 

Uses of PaintContext in org.apache.myfaces.trinidadinternal.image.painter
 

Classes in org.apache.myfaces.trinidadinternal.image.painter that implement PaintContext
 class PaintContextProxy
          PaintContext that delegates all PaintContext calls to the PaintContext returned by the abstract method getPaintContext().
 

Methods in org.apache.myfaces.trinidadinternal.image.painter that return PaintContext
protected abstract  PaintContext PaintContextProxy.getPaintContext()
          Subclasses should override this method to return the PaintContext that the PaintContextProxy will delegate to.
 

Methods in org.apache.myfaces.trinidadinternal.image.painter with parameters of type PaintContext
protected abstract  java.awt.Color ColorChange.getColor(PaintContext context)
           
protected  java.lang.Object TextPainter.getData(PaintContext context)
           
protected  java.lang.Object AbstractPainter.getData(PaintContext context)
           
 ImmInsets NullPainter.getFillInsets(PaintContext context)
          Returns the amount of space by which fills should be inset.
 ImmInsets BorderPainter.getFillInsets(PaintContext context)
          Returns the amount of space by which fills should be inset.
 ImmInsets AbstractBorderPainter.getFillInsets(PaintContext context)
          Returns the amount of space by which fills should be inset.
 ImmInsets NullPainter.getInsets(PaintContext context)
          Returns the amount of space the border will require on each side.
 ImmInsets BorderPainter.getInsets(PaintContext context)
          Returns the amount of space the border will require on each side.
 ImmInsets AbstractBorderPainter.getInsets(PaintContext context)
          Returns the insets of this stack of BorderPainters.
 java.awt.Dimension TextPainter.getMinimumSize(PaintContext context)
          Returns the minimum size of the painter.
 java.awt.Dimension NullPainter.getMinimumSize(PaintContext context)
          Returns the minimum size of the NullPainter.
 java.awt.Dimension AbstractWrappingPainter.getMinimumSize(PaintContext context)
          Returns the minimum size of the wrapped painter.
 java.awt.Dimension AbstractBorderPainter.getMinimumSize(PaintContext context)
          Returns the minimum size of the AbstractBorderPainter.
 java.awt.Dimension Painter.getMinimumSize(PaintContext context)
          Returns the minimum size of the painter.
protected  java.lang.String TextPainter.getMinimumStringData(PaintContext context)
          Returns the String to use for the minimum size calculation.
protected  ImmInsets AbstractBorderPainter.getOwnFillInsets(PaintContext context)
          Returns the amount of space by which fills should be inset for this BorderPainter.
protected  ImmInsets AbstractBorderPainter.getOwnInsets(PaintContext context)
          Returns the insets of just this BorderPainter, as opposed to the entire nested stack of BorderPainters like getInsets does.
protected  ImmInsets AdjustableBorderPainter.getOwnInsets(PaintContext context)
          Returns the insets of just this BorderPainter.
protected  java.lang.String TextPainter.getPaintText(PaintContext context, java.lang.String text, java.awt.FontMetrics metrics, int availableWidth)
          This method is called for each line of text painted.
 java.awt.Dimension TextPainter.getPreferredSize(PaintContext context)
          Returns the preferred size of the painter.
 java.awt.Dimension OffscreenWrappingPainter.getPreferredSize(PaintContext context)
           
 java.awt.Dimension AbstractPainter.getPreferredSize(PaintContext context)
          Returns the preferred size of the painter.
 java.awt.Dimension AbstractWrappingPainter.getPreferredSize(PaintContext context)
          Returns the preferred size of the wrapped painter.
 java.awt.Dimension AbstractBorderPainter.getPreferredSize(PaintContext context)
          Returns the preferred size of the AbstractBorderPainter.
 java.awt.Dimension Painter.getPreferredSize(PaintContext context)
          Returns the preferred size of the painter.
protected  java.lang.String TextPainter.getStringData(PaintContext context)
          Typesafe method to return the String to Paint.
protected  Painter AbstractWrappingPainter.getWrappedPainter(PaintContext context)
          Returns the wrapped painter.
 void TextPainter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the TextPainter at the given location.
 void NullPainter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the NullPainter at the given location.
 void OffscreenWrappingPainter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
           
 void ColorChange.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the text at the specified coordinates.
 void AbstractWrappingPainter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the wrapped Painter.
 void AbstractBorderPainter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the Painter wrapped by the AbstractBorderPainter with the AbstractBorderPainter painted around it.
 void Painter.paint(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paints the Painter at the given location.
protected  void AbstractBorderPainter.paintBorder(PaintContext context, java.awt.Graphics g, int x, int y, int width, int height)
          Paint just the border of the BorderPainter.
protected  int TextPainter.paintText(PaintContext context, java.awt.Graphics g, java.awt.FontMetrics metrics, java.lang.String text, int x, int y, int availableWidth, float alignmentX, int mnemonicIndex)
           
 



Copyright © 2001-2007 Apache Software Foundation. All Rights Reserved.