/** * $RCSfile$ * $Revision$ * $Date$ * * Copyright (C) 2002-2003 Jive Software. All rights reserved. * ==================================================================== * The Jive Software License (based on Apache Software License, Version 1.1) * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by * Jive Software (http://www.jivesoftware.com)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Smack" and "Jive Software" must not be used to * endorse or promote products derived from this software without * prior written permission. For written permission, please * contact webmaster@jivesoftware.com. * * 5. Products derived from this software may not be called "Smack", * nor may "Smack" appear in their name, without prior written * permission of Jive Software. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL JIVE SOFTWARE OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== */ package org.jivesoftware.smackx; /** * An XHTMLText represents formatted text. This class also helps to build valid * XHTML tags. * * @author Gaston Dombiak */ public class XHTMLText { private StringBuffer text = new StringBuffer(30); /** * Creates a new XHTMLText with body tag params. * * @param style the XHTML style of the body * @param lang the language of the body */ public XHTMLText(String style, String lang) { appendOpenBodyTag(style, lang); } /** * Appends a tag that indicates that an anchor section begins. * * @param href indicates the URL being linked to * @param style the XHTML style of the anchor */ public void appendOpenAnchorTag(String href, String style) { StringBuffer sb = new StringBuffer(""); text.append(sb.toString()); } /** * Appends a tag that indicates that an anchor section ends. * */ public void appendCloseAnchorTag() { text.append(""); } /** * Appends a tag that indicates that a blockquote section begins. * * @param style the XHTML style of the blockquote */ public void appendOpenBlockQuoteTag(String style) { StringBuffer sb = new StringBuffer("
"); text.append(sb.toString()); } /** * Appends a tag that indicates that a blockquote section ends. * */ public void appendCloseBlockQuoteTag() { text.append(""); } /** * Appends a tag that indicates that a body section begins. * * @param style the XHTML style of the body * @param lang the language of the body */ private void appendOpenBodyTag(String style, String lang) { StringBuffer sb = new StringBuffer(""); text.append(sb.toString()); } /** * Appends a tag that indicates that a body section ends. * */ private String closeBodyTag() { return ""; } /** * Appends a tag that inserts a single carriage return. * */ public void appendBrTag() { text.append("
");
}
/**
* Appends a tag that indicates end of text that is the code for a program.
*
*/
public void appendCloseCodeTag() {
text.append("
");
}
/**
* Appends a tag that indicates emphasis.
*
*/
public void appendOpenEmTag() {
text.append("");
}
/**
* Appends a tag that indicates end of emphasis.
*
*/
public void appendCloseEmTag() {
text.append("");
}
/**
* Appends a tag that indicates a header, a title of a section of the message.
*
* @param level the level of the Header. It should be a value between 1 and 3
* @param style the XHTML style of the blockquote
*/
public void appendOpenHeaderTag(int level, String style) {
if (level > 3 || level < 1) {
return;
}
StringBuffer sb = new StringBuffer(""); text.append(sb.toString()); } /** * Appends a tag that indicates the end of a new paragraph. This is usually rendered * with two carriage returns, producing a single blank line in between the two paragraphs. * */ public void appendCloseParagraphTag() { text.append("
"); } /** * Appends a tag that indicates that an inlined quote section begins. * * @param style the style of the inlined quote */ public void appendOpenInlinedQuoteTag(String style) { StringBuffer sb = new StringBuffer(""); text.append(sb.toString()); } /** * Appends a tag that indicates that an inlined quote section ends. * */ public void appendCloseInlinedQuoteTag() { text.append(""); } /** * Appends a tag that allows to set the fonts for a span of text. * * @param style the style for a span of text */ public void appendOpenSpanTag(String style) { StringBuffer sb = new StringBuffer(""); text.append(sb.toString()); } /** * Appends a tag that indicates that a span section ends. * */ public void appendCloseSpanTag() { text.append(""); } /** * Appends a tag that indicates text which should be more forceful than surrounding text. * */ public void appendOpenStrongTag() { text.append(""); } /** * Appends a tag that indicates that a strong section ends. * */ public void appendCloseStrongTag() { text.append(""); } /** * Appends a given text to the XHTMLText. * * @param textToAppend the text to append */ public void append(String textToAppend) { text.append(textToAppend); } /** * Returns the text of the XHTMLText. * * Note: Automatically adds the closing body tag. * * @return the text of the XHTMLText */ public String toString() { return text.toString().concat(closeBodyTag()); } }