Clover coverage report -
Coverage timestamp: Do Okt 21 2004 12:21:23 CEST
file stats: LOC: 89   Methods: 9
NCLOC: 33   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
SimpleTypeBeanHelper.java - 0% 0% 0%
coverage
 1    /*
 2    * SimpleTypeBeanHelper.java
 3    *
 4    * Created on 28. September 2004, 12:46
 5    */
 6   
 7    package org.jconfig.utils;
 8   
 9    /**
 10    *
 11    * @author Administrator
 12    */
 13    public class SimpleTypeBeanHelper {
 14   
 15    private char charValue;
 16    private double doubleValue;
 17    private int intValue;
 18    private long longValue;
 19    /**
 20    *
 21    */
 22  0 public SimpleTypeBeanHelper() {
 23    }
 24   
 25    /**
 26    * Getter for property charValue.
 27    * @return Value of property charValue.
 28    */
 29  0 public char getCharValue() {
 30  0 return charValue;
 31    }
 32   
 33    /**
 34    * Setter for property charValue.
 35    * @param charValue New value of property charValue.
 36    */
 37  0 public void setCharValue(char charValue) {
 38  0 this.charValue = charValue;
 39    }
 40   
 41    /**
 42    * Getter for property doubleValue.
 43    * @return Value of property doubleValue.
 44    */
 45  0 public double getDoubleValue() {
 46  0 return doubleValue;
 47    }
 48   
 49    /**
 50    * Setter for property doubleValue.
 51    * @param doubleValue New value of property doubleValue.
 52    */
 53  0 public void setDoubleValue(double doubleValue) {
 54  0 this.doubleValue = doubleValue;
 55    }
 56   
 57    /**
 58    * Getter for property intValue.
 59    * @return Value of property intValue.
 60    */
 61  0 public int getIntValue() {
 62  0 return intValue;
 63    }
 64   
 65    /**
 66    * Setter for property intValue.
 67    * @param intValue New value of property intValue.
 68    */
 69  0 public void setIntValue(int intValue) {
 70  0 this.intValue = intValue;
 71    }
 72   
 73    /**
 74    * Getter for property longValue.
 75    * @return Value of property longValue.
 76    */
 77  0 public long getLongValue() {
 78  0 return longValue;
 79    }
 80   
 81    /**
 82    * Setter for property longValue.
 83    * @param longValue New value of property longValue.
 84    */
 85  0 public void setLongValue(long longValue) {
 86  0 this.longValue = longValue;
 87    }
 88   
 89    }