Home | History | Annotate | Download | only in smackx

Lines Matching full:style

38      * @param style the XHTML style of the body
41 public XHTMLText(String style, String lang) {
42 appendOpenBodyTag(style, lang);
49 * @param style the XHTML style of the anchor
51 public void appendOpenAnchorTag(String href, String style) {
58 if (style != null) {
59 sb.append(" style=\"");
60 sb.append(style);
78 * @param style the XHTML style of the blockquote
80 public void appendOpenBlockQuoteTag(String style) {
82 if (style != null) {
83 sb.append(" style=\"");
84 sb.append(style);
102 * @param style the XHTML style of the body
105 private void appendOpenBodyTag(String style, String lang) {
107 if (style != null) {
108 sb.append(" style=\"");
109 sb.append(style);
181 * @param style the XHTML style of the blockquote
183 public void appendOpenHeaderTag(int level, String style) {
189 if (style != null) {
190 sb.append(" style=\"");
191 sb.append(style);
256 * @param style the style of the line item
258 public void appendLineItemTag(String style) {
260 if (style != null) {
261 sb.append(" style=\"");
262 sb.append(style);
273 * @param style the style of the ordered list
275 public void appendOpenOrderedListTag(String style) {
277 if (style != null) {
278 sb.append(" style=\"");
279 sb.append(style);
298 * @param style the style of the unordered list
300 public void appendOpenUnorderedListTag(String style) {
302 if (style != null) {
303 sb.append(" style=\"");
304 sb.append(style);
323 * @param style the style of the paragraph
325 public void appendOpenParagraphTag(String style) {
327 if (style != null) {
328 sb.append(" style=\"");
329 sb.append(style);
348 * @param style the style of the inlined quote
350 public void appendOpenInlinedQuoteTag(String style) {
352 if (style != null) {
353 sb.append(" style=\"");
354 sb.append(style);
372 * @param style the style for a span of text
374 public void appendOpenSpanTag(String style) {
376 if (style != null) {
377 sb.append(" style=\"");
378 sb.append(style);