Searched defs:hintKey (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java891 * @param hintKey the key of the hint to be set.
897 public abstract void setRenderingHint(Key hintKey, Object hintValue); argument
905 * @param hintKey the key corresponding to the hint to get.
912 public abstract Object getRenderingHint(Key hintKey); argument
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1138 * @param hintKey The key of hint to be set. The strings are
1145 public void setRenderingHint(Key hintKey, Object hintValue) { argument
1151 if (!hintKey.isCompatibleValue(hintValue)) {
1153 (hintValue+" is not compatible with "+hintKey);
1155 if (hintKey instanceof SunHints.Key) {
1159 SunHints.Key sunKey = (SunHints.Key) hintKey;
1243 hints.put(hintKey, hintValue);
1252 hints.put(hintKey, hintValue);
1264 public Object getRenderingHint(Key hintKey) { argument
1266 return hints.get(hintKey);
[all...]

Completed in 38 milliseconds