Searched defs:hintValue (Results 1 - 4 of 4) 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);

Completed in 81 milliseconds