View Javadoc

1   /*
2    * Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
3    *
4    * This software is open source.
5    * See the bottom of this file for the licence.
6    */
7   
8   package org.dom4j.tree;
9   
10  import java.io.IOException;
11  import java.io.Writer;
12  
13  import org.dom4j.Visitor;
14  
15  /***
16   * <p>
17   * <code>AbstractText</code> is an abstract base class for tree implementors
18   * to use for implementation inheritence.
19   * </p>
20   * 
21   * @author <a href="mailto:james.strachan@metastuff.com">James Strachan </a>
22   * @version $Revision: 1.10 $
23   */
24  public abstract class AbstractText extends AbstractCharacterData implements
25          org.dom4j.Text {
26      public AbstractText() {
27      }
28  
29      public short getNodeType() {
30          return TEXT_NODE;
31      }
32  
33      public String toString() {
34          return super.toString() + " [Text: \"" + getText() + "\"]";
35      }
36  
37      public String asXML() {
38          return getText();
39      }
40  
41      public void write(Writer writer) throws IOException {
42          writer.write(getText());
43      }
44  
45      public void accept(Visitor visitor) {
46          visitor.visit(this);
47      }
48  }
49  
50  /*
51   * Redistribution and use of this software and associated documentation
52   * ("Software"), with or without modification, are permitted provided that the
53   * following conditions are met:
54   * 
55   * 1. Redistributions of source code must retain copyright statements and
56   * notices. Redistributions must also contain a copy of this document.
57   * 
58   * 2. Redistributions in binary form must reproduce the above copyright notice,
59   * this list of conditions and the following disclaimer in the documentation
60   * and/or other materials provided with the distribution.
61   * 
62   * 3. The name "DOM4J" must not be used to endorse or promote products derived
63   * from this Software without prior written permission of MetaStuff, Ltd. For
64   * written permission, please contact dom4j-info@metastuff.com.
65   * 
66   * 4. Products derived from this Software may not be called "DOM4J" nor may
67   * "DOM4J" appear in their names without prior written permission of MetaStuff,
68   * Ltd. DOM4J is a registered trademark of MetaStuff, Ltd.
69   * 
70   * 5. Due credit should be given to the DOM4J Project - http://www.dom4j.org
71   * 
72   * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS ``AS IS'' AND
73   * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
74   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
75   * ARE DISCLAIMED. IN NO EVENT SHALL METASTUFF, LTD. OR ITS CONTRIBUTORS BE
76   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
77   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
78   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
79   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
80   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
81   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
82   * POSSIBILITY OF SUCH DAMAGE.
83   * 
84   * Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
85   */