Clover coverage report -
Coverage timestamp: Sat Jul 7 2007 16:41:13 CEST
file stats: LOC: 34   Methods: 0
NCLOC: 6   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
IRunnerJMS.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.runners;
 8   
 9    import jtr.config.jms.JMSConfig;
 10   
 11    /**
 12    * This interface defines all the set-up methods an IRunner meant for dealing
 13    * with the JMS API has to expose.
 14    *
 15    * @author Francesco Russo (frusso@dev.java.net)
 16    * @version 4.0
 17    * @since 1.1
 18    */
 19    public interface IRunnerJMS extends IRunner {
 20    /**
 21    * Set the JMS configuration assigned to the current <code>IRunner</code>
 22    *
 23    * @param jmsConfig
 24    * The JMS configuration
 25    */
 26    public void setJmsConfig(JMSConfig jmsConfig);
 27   
 28    /**
 29    * Get the JMS configuration assigned to the current <code>IRunner</code>
 30    *
 31    * @return JMSConfig
 32    */
 33    public JMSConfig getJmsConfig();
 34    }