|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| Algorithm.java | - | - | - | - |
|
||||||||||||||
| 1 |
package baseCode.algorithm;
|
|
| 2 |
|
|
| 3 |
import org.apache.commons.logging.Log;
|
|
| 4 |
import org.apache.commons.logging.LogFactory;
|
|
| 5 |
|
|
| 6 |
/**
|
|
| 7 |
*
|
|
| 8 |
*
|
|
| 9 |
* <hr>
|
|
| 10 |
* <p>Copyright (c) 2004 Columbia University
|
|
| 11 |
* @author pavlidis
|
|
| 12 |
* @version $Id: Algorithm.java,v 1.3 2004/08/14 17:15:16 pavlidis Exp $
|
|
| 13 |
*/
|
|
| 14 |
public abstract class Algorithm { |
|
| 15 |
|
|
| 16 |
protected static final Log log = LogFactory.getLog( Algorithm.class ); |
|
| 17 |
|
|
| 18 |
|
|
| 19 |
} |
|
| 20 |
|
|
||||||||||