Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 41   Methods: 0
NCLOC: 21   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
Node.java - - - -
coverage
 1    package org.jboss.cache.pojo.test.propagation;
 2   
 3    import java.util.List;
 4   
 5    /**
 6    * Main interface for network sensor supervising example.
 7    */
 8    // We are using JDK1.5 annotation.
 9    @org.jboss.cache.pojo.annotation.Replicable
 10    public interface Node
 11    {
 12    public void setNodeRDN(String rdn);
 13   
 14    public String getNodeRDN();
 15   
 16    public void setNodeFDN(String fdn);
 17   
 18    public String getNodeFDN();
 19   
 20    public void addChildNode(Node child);
 21   
 22    public List getChildren();
 23   
 24    public void setParentNode(Node parent);
 25   
 26    public Node getParentNode();
 27   
 28    public void addStateItem(StateItem stateItem);
 29   
 30    public void setSummaryStateItem(StateItem stateItem);
 31   
 32    public StateItem getSummaryStateItem();
 33   
 34    public List getStateItems();
 35   
 36    public StateItem findStateItem(long itemId);
 37   
 38    public void setPropagationRule(PropagationRule rule);
 39   
 40    public PropagationRule getPropagationRule();
 41    }