< prev index next >
src/java.desktop/share/classes/java/awt/image/renderable/RenderableImageOp.java
Print this page
@@ -131,13 +131,13 @@
* 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
+ * @return {@code true} if successive renderings with the
* same arguments might produce different results;
- * <code>false</code> otherwise.
+ * {@code false} otherwise.
*/
public boolean isDynamic() {
return myCRIF.isDynamic();
}
@@ -204,12 +204,12 @@
return oldParamBlock;
}
/**
* Returns a reference to the current parameter block.
- * @return the <code>ParameterBlock</code> of this
- * <code>RenderableImageOp</code>.
+ * @return the {@code ParameterBlock} of this
+ * {@code RenderableImageOp}.
* @see #setParameterBlock(ParameterBlock)
*/
public ParameterBlock getParameterBlock() {
return paramBlock;
}
< prev index next >