Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 43   Methods: 4
NCLOC: 19   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
DistributionError.java - 0% 0% 0%
coverage
 1    /**
 2    * JTRunner is free software; you can redistribute it and/or modify it under the
 3    * terms of the GNU General Public License as published by the Free Software
 4    * Foundation; either version 2, or (at your option) any later version.
 5    */
 6   
 7    package jtr.remote.test;
 8   
 9    /**
 10    *
 11    * @author frusso
 12    * @version 4.0
 13    * @since 4.0
 14    */
 15    public class DistributionError {
 16   
 17    /**
 18    * Creates a new instance of DistributionError
 19    * @param node
 20    * @param cause
 21    */
 22  0 public DistributionError(NodeInfo node, Throwable cause) {
 23  0 this.node = node;
 24  0 this.cause = cause;
 25    }
 26   
 27  0 public NodeInfo getNode() {
 28  0 return node;
 29    }
 30   
 31  0 public Throwable getCause() {
 32  0 return cause;
 33    }
 34   
 35  0 public String toString() {
 36  0 String msg = "NODE: "+node+"\n"+
 37    "CAUSE: "+cause;
 38  0 return msg;
 39    }
 40   
 41    private NodeInfo node;
 42    private Throwable cause;
 43    }