1 18 19 package org.apache.batik.ext.awt; 20 21 import java.awt.RenderingHints ; 22 23 29 final class TranscodingHintKey extends RenderingHints.Key { 30 31 TranscodingHintKey(int number) { super(number); } 32 33 public boolean isCompatibleValue(Object val) { 34 boolean isCompatible = true; 35 if ((val != null) && !(val instanceof String )) { 36 isCompatible = false; 37 } 38 return isCompatible; 39 } 40 } 41 42 | Popular Tags |