Searched refs:styleName (Results 1 - 5 of 5) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DLinkInfoImpl.java208 public String styleName =""; field in class:LinkInfoImpl
239 * @param styleName String style of text defined in style sheet.
242 boolean isStrong, String styleName){
247 this.styleName = styleName;
241 LinkInfoImpl(int context, ClassDoc classDoc, String where, String label, boolean isStrong, String styleName) argument
H A DLinkFactoryImpl.java81 classLinkInfo.isStrong, classLinkInfo.styleName,
92 label.toString(), classLinkInfo.isStrong, classLinkInfo.styleName,
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DRTFReader.java846 warning("Style "+style.number+" ("+style.styleName+"): "+defined);
905 public String styleName; field in class:RTFReader.StylesheetDestination.StyleDefiningDestination
918 styleName = null;
927 if (styleName != null)
928 styleName = styleName + text;
930 styleName = text;
934 int semicolon = (styleName == null) ? 0 : styleName.indexOf(';');
936 styleName
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFont.java1490 String styleName = "";
1524 styleName = str.substring(styleIndex+1, sizeIndex);
1525 styleName = styleName.toLowerCase(Locale.ENGLISH);
1526 if (styleName.equals("bolditalic")) {
1528 } else if (styleName.equals("italic")) {
1530 } else if (styleName.equals("bold")) {
1532 } else if (styleName.equals("plain")) {
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java540 String styleName = styleNames[styleIndex];
541 value = (String)localeMap.get(fontName + "." + styleName + "." + scriptName);
614 private static boolean isLogicalFontStyleName(String styleName) { argument
616 if (styleName.equals(styleNames[i])) {
639 String styleName = fontName.substring(period + 1);
641 isLogicalFontStyleName(styleName);
651 protected static int getStyleIndex(String styleName) { argument
652 return getArrayIndex(styleNames, styleName);
872 String styleName = styleNames[styleIndex];

Completed in 64 milliseconds