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

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DLabelView.java71 underline = u;
214 * an underline should be drawn through the baseline. This
215 * is implemented to return the cached underline property.
224 * <code>underline</code> property
229 return underline;
311 private boolean underline; field in class:LabelView
H A DStyleConstants.java131 * Name of the underline attribute.
133 public static final Object Underline = new CharacterConstants("underline");
441 * Checks whether the underline attribute is set.
447 Boolean underline = (Boolean) a.getAttribute(Underline);
448 if (underline != null) {
449 return underline.booleanValue();
500 * Sets the underline attribute.
H A DStyledEditorKit.java803 * An action to toggle the underline attribute.
820 super("font-underline");
833 boolean underline = (StyleConstants.isUnderline(attr)) ? false : true;
835 StyleConstants.setUnderline(sas, underline);
H A DGlyphView.java207 * an underline should be drawn through the baseline.
493 // render underline or strikethrough if set.
494 boolean underline = isUnderline();
496 if (underline || strike) {
518 if (underline) {
/openjdk7/jdk/src/share/classes/sun/font/
H A DAttributeValues.java79 private byte imUnderline = -1; // same default as underline
81 private byte underline = -1; // arrgh, value for ON is 0 field in class:AttributeValues
145 public int getUnderline() { return underline; }
147 this.underline = (byte)f; update(EUNDERLINE); }
458 && underline == rhs.underline
526 case EUNDERLINE: b.append(underline); break;
584 case EUNDERLINE: underline = src.underline; break;
613 case EUNDERLINE: return underline
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css170 text-decoration: underline}
207 u {text-decoration: underline}

Completed in 41 milliseconds