Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 29   Methods: 0
NCLOC: 7   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
WsMsgType.java - - - -
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.ws;
 8   
 9    /**
 10    * This enumeration describes the possible webservices message types.
 11    * @author Francesco Russo (frusso@dev.java.net)
 12    * @version 4.0
 13    * @since 3.0
 14    */
 15    @Deprecated
 16    public enum WsMsgType {
 17    /**
 18    * A webservice input message.
 19    */
 20    INPUT_MSG,
 21    /**
 22    * A webservice output message.
 23    */
 24    OUTPUT_MSG,
 25    /**
 26    * A webservice fault message.
 27    */
 28    FAULT_MSG
 29    }