Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 65   Methods: 10
NCLOC: 50   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
TestNode.java - 77.8% 80% 78.9%
coverage coverage
 1    package org.jboss.cache.pojo.test;
 2   
 3    import java.util.ArrayList;
 4    import java.util.List;
 5   
 6    @org.jboss.cache.pojo.annotation.Replicable
 7    public class TestNode
 8    {
 9    private String rdn_;
 10   
 11    private String fdn_;
 12   
 13    private List childNodes_ = new ArrayList();
 14   
 15    private TestNode parentNode_;
 16   
 17  19 public TestNode()
 18    {
 19    }
 20   
 21  17 public void setNodeRDN(String rdn)
 22    {
 23  17 this.rdn_ = rdn;
 24    }
 25   
 26  11 public String getNodeRDN()
 27    {
 28  11 return this.rdn_;
 29    }
 30   
 31  17 public void setNodeFDN(String fdn)
 32    {
 33  17 this.fdn_ = fdn;
 34    }
 35   
 36  17 public String getNodeFDN()
 37    {
 38  17 return this.fdn_;
 39    }
 40   
 41  13 public void addChildNode(TestNode child)
 42    {
 43  13 childNodes_.add(child);
 44    }
 45   
 46  6 public List getChildren()
 47    {
 48  6 return childNodes_;
 49    }
 50   
 51  13 public void setParentNode(TestNode parent)
 52    {
 53  13 parentNode_ = parent;
 54    }
 55   
 56  0 public TestNode getParentNode()
 57    {
 58  0 return this.parentNode_;
 59    }
 60   
 61  0 public String toString()
 62    {
 63  0 return getNodeFDN();
 64    }
 65    }