< prev index next >
src/java.desktop/share/classes/java/awt/image/renderable/RenderableImageOp.java
Print this page
*** 131,143 ****
* Returns true if successive renderings (that is, calls to
* createRendering() or createScaledRendering()) with the same arguments
* may produce different results. This method may be used to
* determine whether an existing rendering may be cached and
* reused. The CRIF's isDynamic method will be called.
! * @return <code>true</code> if successive renderings with the
* same arguments might produce different results;
! * <code>false</code> otherwise.
*/
public boolean isDynamic() {
return myCRIF.isDynamic();
}
--- 131,143 ----
* Returns true if successive renderings (that is, calls to
* createRendering() or createScaledRendering()) with the same arguments
* may produce different results. This method may be used to
* determine whether an existing rendering may be cached and
* reused. The CRIF's isDynamic method will be called.
! * @return {@code true} if successive renderings with the
* same arguments might produce different results;
! * {@code false} otherwise.
*/
public boolean isDynamic() {
return myCRIF.isDynamic();
}
*** 204,215 ****
return oldParamBlock;
}
/**
* Returns a reference to the current parameter block.
! * @return the <code>ParameterBlock</code> of this
! * <code>RenderableImageOp</code>.
* @see #setParameterBlock(ParameterBlock)
*/
public ParameterBlock getParameterBlock() {
return paramBlock;
}
--- 204,215 ----
return oldParamBlock;
}
/**
* Returns a reference to the current parameter block.
! * @return the {@code ParameterBlock} of this
! * {@code RenderableImageOp}.
* @see #setParameterBlock(ParameterBlock)
*/
public ParameterBlock getParameterBlock() {
return paramBlock;
}
< prev index next >