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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTextLayoutStrategy.java305 Object shaper = null;
307 shaper = ((JComponent) c).getClientProperty(
310 text.setShaper(shaper);
410 private void setShaper(Object shaper) { argument
411 this.shaper = shaper;
527 return shaper;
552 private Object shaper = null; field in class:TextLayoutStrategy.AttributedSegment
/openjdk7/jdk/src/share/classes/sun/text/bidi/
H A DBidiBase.java2696 Object shaper = paragraph.getAttribute(TextAttributeConstants.NUMERIC_SHAPING);
2729 if (shaper != null) {
2730 NumericShapings.shape(shaper, txt, 0, len);
3534 static void shape(Object shaper, char[] text, int start, int count) { argument
3538 shapeMethod.invoke(shaper, text, start, count);

Completed in 40 milliseconds