Searched refs:hintValue (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java892 * @param hintValue the value indicating preferences for the specified
897 public abstract void setRenderingHint(Key hintKey, Object hintValue); argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java1585 * @param hintValue The value indicating preferences for the specified
1589 public void setRenderingHint(Key hintCategory, Object hintValue) { argument
1590 mGraphics.setRenderingHint(hintCategory, hintValue);
H A DProxyGraphics2D.java1469 * @param hintValue The value indicating preferences for the specified
1473 public void setRenderingHint(Key hintCategory, Object hintValue) { argument
1474 mGraphics.setRenderingHint(hintCategory, hintValue);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1140 * @param hintValue The value indicating preferences for the specified
1145 public void setRenderingHint(Key hintKey, Object hintValue) { argument
1151 if (!hintKey.isCompatibleValue(hintValue)) {
1153 (hintValue+" is not compatible with "+hintKey);
1162 newHint = ((Integer)hintValue).intValue();
1164 newHint = ((SunHints.Value) hintValue).getIndex();
1243 hints.put(hintKey, hintValue);
1252 hints.put(hintKey, hintValue);
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java733 Object hintValue = sg2d.getRenderingHint(RenderingHints.KEY_INTERPOLATION);
734 int interpolationHint = (hintValue != null ? ((SunHints.Value) hintValue).getIndex() : -1);

Completed in 67 milliseconds