< prev index next >
src/java.desktop/share/classes/java/awt/image/renderable/RenderContext.java
Print this page
*** 123,145 ****
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>.
* @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>.
* @see #getRenderingHints
*/
public void setRenderingHints(RenderingHints hints) {
this.hints = hints;
}
--- 123,145 ----
public RenderContext(AffineTransform usr2dev, Shape aoi) {
this(usr2dev, aoi, null);
}
/**
! * 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}.
! * @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,191 ****
* which misspelled the method name.
*
* @param modTransform the AffineTransform to prepend to the
* current usr2dev transform.
* @deprecated replaced by
! * <code>preConcatenateTransform(AffineTransform)</code>.
*/
@Deprecated
public void preConcetenateTransform(AffineTransform modTransform) {
usr2dev.preConcatenate(modTransform);
}
--- 181,191 ----
* which misspelled the method name.
*
* @param modTransform the AffineTransform to prepend to the
* current usr2dev transform.
* @deprecated replaced by
! * {@code preConcatenateTransform(AffineTransform)}.
*/
@Deprecated
public void preConcetenateTransform(AffineTransform modTransform) {
usr2dev.preConcatenate(modTransform);
}
*** 216,226 ****
* which misspelled the method name.
*
* @param modTransform the AffineTransform to append to the
* current usr2dev transform.
* @deprecated replaced by
! * <code>concatenateTransform(AffineTransform)</code>.
*/
@Deprecated
public void concetenateTransform(AffineTransform modTransform) {
usr2dev.concatenate(modTransform);
}
--- 216,226 ----
* which misspelled the method name.
*
* @param modTransform the AffineTransform to append to the
* current usr2dev transform.
* @deprecated replaced by
! * {@code concatenateTransform(AffineTransform)}.
*/
@Deprecated
public void concetenateTransform(AffineTransform modTransform) {
usr2dev.concatenate(modTransform);
}
< prev index next >