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

/openjdk7/jdk/src/share/classes/sun/font/
H A DExtendedTextLabel.java34 import java.awt.font.GlyphJustificationInfo;
126 * Return GlyphJustificationInfo objects for the characters between
132 public abstract void getJustificationInfos(GlyphJustificationInfo[] infos, int infoStart, int charStart, int charLimit);
H A DTextLineComponent.java36 import java.awt.font.GlyphJustificationInfo;
106 * Return GlyphJustificationInfo objects for the characters between
112 public void getJustificationInfos(GlyphJustificationInfo[] infos, int infoStart, int charStart, int charLimit);
H A DExtendedTextSourceLabel.java38 import java.awt.font.GlyphJustificationInfo;
935 public void getJustificationInfos(GlyphJustificationInfo[] infos, int infoStart, int charStart, int charLimit) {
947 GlyphJustificationInfo nullInfo =
948 new GlyphJustificationInfo(0,
949 false, GlyphJustificationInfo.PRIORITY_NONE, 0, 0,
950 false, GlyphJustificationInfo.PRIORITY_NONE, 0, 0);
952 GlyphJustificationInfo spaceInfo =
953 new GlyphJustificationInfo(size,
954 true, GlyphJustificationInfo.PRIORITY_WHITESPACE, 0, size,
955 true, GlyphJustificationInfo
[all...]
H A DGraphicComponent.java40 import java.awt.font.GlyphJustificationInfo;
353 * Return GlyphJustificationInfo objects for the characters between
359 public void getJustificationInfos(GlyphJustificationInfo[] infos, int infoStart, int charStart, int charLimit) {
H A DStandardGlyphVector.java36 import java.awt.font.GlyphJustificationInfo;
617 public GlyphJustificationInfo getGlyphJustificationInfo(int ix) {
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DGlyphJustificationInfo.java43 * The <code>GlyphJustificationInfo</code> class represents information
48 * <code>GlyphJustificationInfo</code> are weight, priority, absorb and
70 * Each <code>GlyphJustificationInfo</code> represents two sets of
77 public final class GlyphJustificationInfo { class
102 public GlyphJustificationInfo(float weight, method in class:GlyphJustificationInfo
H A DGraphicAttribute.java202 * @return a {@link GlyphJustificationInfo} object that contains the
205 public GlyphJustificationInfo getJustificationInfo() {
210 return new GlyphJustificationInfo(
H A DTextJustifier.java51 private GlyphJustificationInfo[] info;
61 TextJustifier(GlyphJustificationInfo[] info, int start, int limit) {
69 GlyphJustificationInfo gji = info[i];
112 GlyphJustificationInfo gi = info[i];
179 GlyphJustificationInfo gi = info[i];
H A DGlyphVector.java41 import java.awt.font.GlyphJustificationInfo;
588 * @return a {@link GlyphJustificationInfo} object that
596 public abstract GlyphJustificationInfo getGlyphJustificationInfo(int glyphIndex);
H A DTextLine.java1331 // generate an array of GlyphJustificationInfo records to pass to
1342 GlyphJustificationInfo[] infos = new GlyphJustificationInfo[infoCount];

Completed in 40 milliseconds