< prev index next >

src/java.desktop/share/classes/java/awt/image/renderable/ContextualRenderedImageFactory.java

Print this page

        

*** 68,78 **** * @param i the index of the source image. * @param renderContext the RenderContext being applied to the operation. * @param paramBlock a ParameterBlock containing the operation's * sources and parameters. * @param image the RenderableImage being rendered. ! * @return a <code>RenderContext</code> for * the source at the specified index of the parameters * Vector contained in the specified ParameterBlock. */ RenderContext mapRenderContext(int i, RenderContext renderContext, --- 68,78 ---- * @param i the index of the source image. * @param renderContext the RenderContext being applied to the operation. * @param paramBlock a ParameterBlock containing the operation's * sources and parameters. * @param image the RenderableImage being rendered. ! * @return a {@code RenderContext} for * the source at the specified index of the parameters * Vector contained in the specified ParameterBlock. */ RenderContext mapRenderContext(int i, RenderContext renderContext,
*** 89,99 **** * RenderContext. * * @param renderContext The RenderContext specifying the rendering * @param paramBlock a ParameterBlock containing the operation's * sources and parameters ! * @return a <code>RenderedImage</code> from the sources and parameters * in the specified ParameterBlock and according to the * rendering instructions in the specified RenderContext. */ RenderedImage create(RenderContext renderContext, ParameterBlock paramBlock); --- 89,99 ---- * RenderContext. * * @param renderContext The RenderContext specifying the rendering * @param paramBlock a ParameterBlock containing the operation's * sources and parameters ! * @return a {@code RenderedImage} from the sources and parameters * in the specified ParameterBlock and according to the * rendering instructions in the specified RenderContext. */ RenderedImage create(RenderContext renderContext, ParameterBlock paramBlock);
*** 133,143 **** * Returns true if successive renderings (that is, calls to * create(RenderContext, ParameterBlock)) with the same arguments * may produce different results. This method may be used to * determine whether an existing rendering may be cached and * reused. It is always safe to return true. ! * @return <code>true</code> if successive renderings with the * same arguments might produce different results; ! * <code>false</code> otherwise. */ boolean isDynamic(); } --- 133,143 ---- * Returns true if successive renderings (that is, calls to * create(RenderContext, ParameterBlock)) with the same arguments * may produce different results. This method may be used to * determine whether an existing rendering may be cached and * reused. It is always safe to return true. ! * @return {@code true} if successive renderings with the * same arguments might produce different results; ! * {@code false} otherwise. */ boolean isDynamic(); }
< prev index next >