Searched defs:justification (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifGraphicsUtils.java87 * <b>justification</b> specifies the text's justification, one of
90 * uses this rectangle and the desired justification to compute the point
95 int width, int height, int justification) {
96 drawStringInRect(null, g, aString, x, y, width, height, justification);
101 int justification) {
115 if (justification == CENTER) {
121 } else if (justification == RIGHT) {
94 drawStringInRect(Graphics g, String aString, int x, int y, int width, int height, int justification) argument
99 drawStringInRect(JComponent c, Graphics g, String aString, int x, int y, int width, int height, int justification) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DParagraphView.java86 * Sets the type of justification.
96 justification = j;
427 if(justification != StyleConstants.ALIGN_LEFT)
801 private int justification; field in class:ParagraphView
862 switch (justification) {
995 * At this time (jdk1.6) we support justification on for non
1001 boolean ret = (justification == StyleConstants.ALIGN_JUSTIFIED);
1003 //no justification for i18n documents
1006 //no justification for the last row
1009 //no justification fo
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java75 private float justification = 1f; field in class:AttributeValues
161 public float getJustification() { return justification; }
163 this.justification = f; update(EJUSTIFICATION); }
472 && equals(justification, rhs.justification)
530 case EJUSTIFICATION: b.append(justification); break;
588 case EJUSTIFICATION: justification = src.justification; break;
617 case EJUSTIFICATION: return justification == src.justification;
[all...]

Completed in 41 milliseconds