Clover coverage report -
Coverage timestamp: Fri Nov 19 2004 13:41:51 PST
file stats: LOC: 109   Methods: 18
NCLOC: 85   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
PhotoMeta.java - 100% 100% 100%
coverage
 1    package photospace.meta;
 2   
 3   
 4   
 5    public class PhotoMeta extends MediaMeta
 6    {
 7   
 8    private int width;
 9    private int height;
 10   
 11    private String shutterSpeed;
 12    private String aperture;
 13    private String focalLength;
 14    private String exposureBias;
 15    private String meteringMode;
 16    private String sensingMethod;
 17    private String flash;
 18   
 19  70 public int getWidth()
 20    {
 21  70 return width;
 22    }
 23   
 24  51 public void setWidth(int width)
 25    {
 26  51 this.width = width;
 27    }
 28   
 29  68 public int getHeight()
 30    {
 31  68 return height;
 32    }
 33   
 34  44 public void setHeight(int height)
 35    {
 36  44 this.height = height;
 37    }
 38   
 39  49 public String getShutterSpeed()
 40    {
 41  49 return shutterSpeed;
 42    }
 43   
 44  13 public void setShutterSpeed(String shutterSpeed)
 45    {
 46  13 this.shutterSpeed = shutterSpeed;
 47    }
 48   
 49  49 public String getAperture()
 50    {
 51  49 return aperture;
 52    }
 53   
 54  13 public void setAperture(String aperture)
 55    {
 56  13 this.aperture = aperture;
 57    }
 58   
 59  49 public String getFocalLength()
 60    {
 61  49 return focalLength;
 62    }
 63   
 64  13 public void setFocalLength(String focalLength)
 65    {
 66  13 this.focalLength = focalLength;
 67    }
 68   
 69  49 public String getExposureBias()
 70    {
 71  49 return exposureBias;
 72    }
 73   
 74  13 public void setExposureBias(String exposureBias)
 75    {
 76  13 this.exposureBias = exposureBias;
 77    }
 78   
 79  49 public String getMeteringMode()
 80    {
 81  49 return meteringMode;
 82    }
 83   
 84  13 public void setMeteringMode(String meteringMode)
 85    {
 86  13 this.meteringMode = meteringMode;
 87    }
 88   
 89  49 public String getSensingMethod()
 90    {
 91  49 return sensingMethod;
 92    }
 93   
 94  13 public void setSensingMethod(String sensingMethod)
 95    {
 96  13 this.sensingMethod = sensingMethod;
 97    }
 98   
 99  49 public String getFlash()
 100    {
 101  49 return flash;
 102    }
 103   
 104  13 public void setFlash(String flash)
 105    {
 106  13 this.flash = flash;
 107    }
 108   
 109    }