Clover coverage report - dom4j - 1.6.1
Coverage timestamp: ma mei 16 2005 14:23:01 GMT+01:00
file stats: LOC: 85   Methods: 6
NCLOC: 24   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
AbstractText.java - 60% 66,7% 63,6%
coverage coverage
 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  121763 public AbstractText() {
 27    }
 28   
 29  192772 public short getNodeType() {
 30  192772 return TEXT_NODE;
 31    }
 32   
 33  77268 public String toString() {
 34  77268 return super.toString() + " [Text: \"" + getText() + "\"]";
 35    }
 36   
 37  2 public String asXML() {
 38  2 return getText();
 39    }
 40   
 41  0 public void write(Writer writer) throws IOException {
 42  0 writer.write(getText());
 43    }
 44   
 45  0 public void accept(Visitor visitor) {
 46  0 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    */