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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java921 * @param singleRange the specified Unicode range
925 public static NumericShaper getShaper(int singleRange) { argument
926 int key = getKeyFromMask(singleRange);
927 return new NumericShaper(key, singleRange);
935 * @param singleRange the Unicode range given by a {@link
938 * @throws NullPointerException if {@code singleRange} is {@code null}
941 public static NumericShaper getShaper(Range singleRange) { argument
942 return new NumericShaper(singleRange, EnumSet.of(singleRange));

Completed in 35 milliseconds