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

/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextLabel.java46 implements TextLineComponent{
118 public abstract TextLineComponent getSubset(int start, int limit, int dir);
145 public abstract TextLineComponent applyJustificationDeltas(float[] deltas, int deltaStart, boolean[] flags);
H A DTextLineComponent.java42 public interface TextLineComponent { interface
93 * Return a TextLineComponent for the characters in the range
94 * start, limit. The range is relative to this TextLineComponent
98 public TextLineComponent getSubset(int start, int limit, int dir);
125 public TextLineComponent applyJustificationDeltas(float[] deltas, int deltaStart, boolean[] flags);
H A DGraphicComponent.java47 public final class GraphicComponent implements TextLineComponent,
326 public TextLineComponent getSubset(int start, int limit, int dir) {
373 public TextLineComponent applyJustificationDeltas(float[] deltas, int deltaStart, boolean[] flags) {
H A DStandardTextSource.java196 if (dir != TextLineComponent.UNCHANGED) {
198 if (!(dir == TextLineComponent.LEFT_TO_RIGHT && ltr) &&
199 !(dir == TextLineComponent.RIGHT_TO_LEFT && !ltr)) {
H A DExtendedTextSourceLabel.java891 public TextLineComponent getSubset(int start, int limit, int dir) {
1006 public TextLineComponent applyJustificationDeltas(float[] deltas, int deltaStart, boolean[] flags) {
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java61 import sun.font.TextLineComponent;
85 private TextLineComponent[] fComponents;
104 TextLineComponent[] components,
160 TextLineComponent tlc;
372 TextLineComponent tlc = fComponents[getComponentLogicalIndex(i)];
490 TextLineComponent tlc = line.fComponents[componentIndex];
502 TextLineComponent tlc = line.fComponents[componentIndex];
514 TextLineComponent tlc = line.fComponents[componentIndex];
525 TextLineComponent tlc = line.fComponents[componentIndex];
746 TextLineComponent tl
[all...]
H A DTextMeasurer.java58 import sun.font.TextLineComponent;
132 private TextLineComponent[] fComponents;
179 other.fComponents = (TextLineComponent[]) fComponents.clone();
322 TextLineComponent tlc = fComponents[tlcIndex];
374 private TextLineComponent[] makeComponentsOnRange(int startPos,
422 TextLineComponent[] components = new TextLineComponent[componentCount];
430 subsetFlag = fIsDirectionLTR? TextLineComponent.LEFT_TO_RIGHT :
431 TextLineComponent.RIGHT_TO_LEFT;
435 subsetFlag = TextLineComponent
[all...]

Completed in 61 milliseconds