/*-- Copyright (C) 2000 Brett McLaughlin & Jason Hunter. All rights reserved. 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 disclaimer that follows these conditions in the documentation and/or other materials provided with the distribution. 3. The name "JDOM" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact license@jdom.org. 4. Products derived from this software may not be called "JDOM", nor may "JDOM" appear in their name, without prior written permission from the JDOM Project Management (pm@jdom.org). In addition, we request (but do not require) that you include in the end-user documentation provided with the redistribution and/or in the software itself an acknowledgement equivalent to the following: "This product includes software developed by the JDOM Project (http://www.jdom.org/)." Alternatively, the acknowledgment may be graphical using the logos available at http://www.jdom.org/images/logos. 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 THE JDOM AUTHORS OR THE PROJECT 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. This software consists of voluntary contributions made by many individuals on behalf of the JDOM Project and was originally created by Brett McLaughlin and Jason Hunter . For more information on the JDOM Project, please see . */ package org.jdom; import java.io.Serializable; /** *

Text represents character-based content within an * XML document represented by JDOM. It is intended to provide a modular, * perantable method of representing that text. Additionally, * Text makes no guarantees about the underlying textual * representation of character data, but does expose that data as a Java * String.

* * @author Brett McLaughlin * @version 1.0 */ public class Text implements Serializable, Cloneable { private static final String CVS_ID = "@(#) $RCSfile: Text.java,v $ $Revision: 1.15 $ $Date: 2001/05/08 22:23:55 $ $Name: $"; /** The actual character content */ // XXX See http://www.servlets.com/archive/servlet/ReadMsg?msgId=8776 // from Alex Rosen for a reason why String might be better // XXX See http://www.servlets.com/archive/servlet/ReadMsg?msgId=8612 // from elharo for a description of why Java characters may not suffice // long term protected StringBuffer value; /** This Text node's parent. */ protected Element parent; /** *

This is the protected, no-args constructor standard in all JDOM * classes. It allows subclassers to get a raw instance with no * initialization.

*/ protected Text() { } /** *

This constructor creates a new Text node, with the * supplied string value as it's character content.

* * @param str the node's character content. */ public Text(String str) { setText( str); } /** *

This returns the value of this Text node as a Java * String.

* * @return String - character content of this node. */ public String getText() { return value.toString(); } /** *

* This returns the textual content with all surrounding whitespace * removed. If only whitespace exists, the empty string is returned. *

* * @return trimmed text content or empty string */ public String getTextTrim() { return getText().trim(); } /** *

* This returns the textual content with all surrounding whitespace * removed and internal whitespace normalized to a single space. If * only whitespace exists, the empty string is returned. *

* * @return normalized text content or empty string */ public String getTextNormalize() { return normalizeString(getText()); } /** *

* This returns a new string with all surrounding whitespace * removed and internal whitespace normalized to a single space. If * only whitespace exists, the empty string is returned. *

*

* Per XML 1.0 Production 3 whitespace includes: #x20, #x9, #xD, #xA *

* * @param str string to be normalized. * @return normalized string or empty string */ public static String normalizeString(String str) { if (str == null) return null; /* XXX or should it return "" */ char[] c = str.toCharArray(); char[] n = new char[c.length]; boolean white = true; int pos = 0; for (int i = 0; i < c.length; i++) { if (" \t\n\r".indexOf(c[i]) != -1) { if (!white) { n[pos++] = ' '; white = true; } } else { n[pos++] = c[i]; white = false; } } if (white && pos > 0) { pos--; } return new String(n, 0, pos); } /** *

This will set the value of this Text node.

* * @param str value for node's content. */ public Text setText(String str) { value = new StringBuffer(); /* Clear old text */ if (str == null) return this; append( str); /* so we get the Verifier check */ return this; } /** *

This will append character content to whatever content already * exists within this Text node.

* * @param str character content to append. */ public void append(String str) { String reason; if (str == null) { return; } if ((reason = Verifier.checkCharacterData(str)) != null) { throw new IllegalDataException(str, "character content", reason); } value.append(str); } /** *

This will append the content of another Text node * to this node.

* * @param text Text node to append. */ public void append(Text text) { if (text == null) { return; } value.append(text.getText()); } /** *

This will return the parent of this Text node, which * is always a JDOM {@link Element}.

* * @return Element - this node's parent. */ public Element getParent() { return parent; } /** *

* This retrieves the owning {@link Document} for * this Text, or null if not a currently a member * of a {@link Document}. *

* * @return Document owning this Text, or null. */ public Document getDocument() { if (parent != null) { return parent.getDocument(); } return null; } /** *

This will set the parent of the Text node to the supplied * {@link Element}. This method is intentionally left as * protected so that only JDOM internals use it.

*

If you need an instance of this Text node with a new * parent, you should get a copy of this node with * {@link #clone} and set it on the desired (new) parent * Element.

* * @param parent parent for this node. */ protected Text setParent(Element parent) { this.parent = parent; return this; } /** *

* Detaches the Text from its parent, or does nothing * if the Text has no parent. *

* * @return Text - this Text modified. */ public Text detach() { if (parent != null) { parent.removeContent(this); } parent = null; return this; } /** *

This returns a String representation of the * Text node, suitable for debugging. If the XML * representation of the Text node is desired, * either {@link #getText} or * {@link org.jdom.output.XMLOutputter#output(Text, Writer)} * should be used.

* * @return String - information about this node. */ public String toString() { return new StringBuffer(64) .append("Text: ") .append(getText()) .toString(); } /** *

This will generate a hash code for this node.

* * @return int - hash code for this node. */ public final int hashCode() { return super.hashCode(); } /** *

This will return a clone of this Text node, with the * same character content, but no parent.

* * @return Text - cloned node. */ public Object clone() { Text text = null; try { text = (Text)super.clone(); } catch (CloneNotSupportedException ce) { // Can't happen } text.parent = null; text.value = new StringBuffer( value.toString()); return text; } /** *

* This tests for equality of this Text to the supplied * Object, explicitly using the == operator. *

* * @param ob Object to compare to * @return whether the Text nodes are equal */ public final boolean equals(Object ob) { return (this == ob); } }