Lines Matching refs:style
41 public XHTMLText(String style, String lang) { in XHTMLText() argument
42 appendOpenBodyTag(style, lang); in XHTMLText()
51 public void appendOpenAnchorTag(String href, String style) { in appendOpenAnchorTag() argument
58 if (style != null) { in appendOpenAnchorTag()
60 sb.append(style); in appendOpenAnchorTag()
80 public void appendOpenBlockQuoteTag(String style) { in appendOpenBlockQuoteTag() argument
82 if (style != null) { in appendOpenBlockQuoteTag()
84 sb.append(style); in appendOpenBlockQuoteTag()
105 private void appendOpenBodyTag(String style, String lang) { in appendOpenBodyTag() argument
107 if (style != null) { in appendOpenBodyTag()
109 sb.append(style); in appendOpenBodyTag()
183 public void appendOpenHeaderTag(int level, String style) { in appendOpenHeaderTag() argument
189 if (style != null) { in appendOpenHeaderTag()
191 sb.append(style); in appendOpenHeaderTag()
258 public void appendLineItemTag(String style) { in appendLineItemTag() argument
260 if (style != null) { in appendLineItemTag()
262 sb.append(style); in appendLineItemTag()
275 public void appendOpenOrderedListTag(String style) { in appendOpenOrderedListTag() argument
277 if (style != null) { in appendOpenOrderedListTag()
279 sb.append(style); in appendOpenOrderedListTag()
300 public void appendOpenUnorderedListTag(String style) { in appendOpenUnorderedListTag() argument
302 if (style != null) { in appendOpenUnorderedListTag()
304 sb.append(style); in appendOpenUnorderedListTag()
325 public void appendOpenParagraphTag(String style) { in appendOpenParagraphTag() argument
327 if (style != null) { in appendOpenParagraphTag()
329 sb.append(style); in appendOpenParagraphTag()
350 public void appendOpenInlinedQuoteTag(String style) { in appendOpenInlinedQuoteTag() argument
352 if (style != null) { in appendOpenInlinedQuoteTag()
354 sb.append(style); in appendOpenInlinedQuoteTag()
374 public void appendOpenSpanTag(String style) { in appendOpenSpanTag() argument
376 if (style != null) { in appendOpenSpanTag()
378 sb.append(style); in appendOpenSpanTag()