< prev index next >
src/java.desktop/share/classes/java/awt/image/renderable/RenderContext.java
Print this page
@@ -123,23 +123,23 @@
public RenderContext(AffineTransform usr2dev, Shape aoi) {
this(usr2dev, aoi, null);
}
/**
- * Gets the rendering hints of this <code>RenderContext</code>.
- * @return a <code>RenderingHints</code> object that represents
- * the rendering hints of this <code>RenderContext</code>.
+ * Gets the rendering hints of this {@code RenderContext}.
+ * @return a {@code RenderingHints} object that represents
+ * the rendering hints of this {@code RenderContext}.
* @see #setRenderingHints(RenderingHints)
*/
public RenderingHints getRenderingHints() {
return hints;
}
/**
- * Sets the rendering hints of this <code>RenderContext</code>.
- * @param hints a <code>RenderingHints</code> object that represents
- * the rendering hints to assign to this <code>RenderContext</code>.
+ * Sets the rendering hints of this {@code RenderContext}.
+ * @param hints a {@code RenderingHints} object that represents
+ * the rendering hints to assign to this {@code RenderContext}.
* @see #getRenderingHints
*/
public void setRenderingHints(RenderingHints hints) {
this.hints = hints;
}
@@ -181,11 +181,11 @@
* which misspelled the method name.
*
* @param modTransform the AffineTransform to prepend to the
* current usr2dev transform.
* @deprecated replaced by
- * <code>preConcatenateTransform(AffineTransform)</code>.
+ * {@code preConcatenateTransform(AffineTransform)}.
*/
@Deprecated
public void preConcetenateTransform(AffineTransform modTransform) {
usr2dev.preConcatenate(modTransform);
}
@@ -216,11 +216,11 @@
* which misspelled the method name.
*
* @param modTransform the AffineTransform to append to the
* current usr2dev transform.
* @deprecated replaced by
- * <code>concatenateTransform(AffineTransform)</code>.
+ * {@code concatenateTransform(AffineTransform)}.
*/
@Deprecated
public void concetenateTransform(AffineTransform modTransform) {
usr2dev.concatenate(modTransform);
}
< prev index next >