Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 42   Methods: 5
NCLOC: 26   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
ArrayObject.java - 40% 40% 40%
coverage coverage
 1    /*
 2    * JBoss, Home of Professional Open Source
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7   
 8    package org.jboss.cache.pojo.test;
 9   
 10    /**
 11    */
 12    // We are using JDK1.5 annotation.
 13    @org.jboss.cache.pojo.annotation.Replicable
 14    public class ArrayObject
 15    {
 16    private Person[] team;
 17   
 18  1 public ArrayObject()
 19    {
 20  1 team = new Person[10];
 21    }
 22   
 23  0 public Person[] getTeam()
 24    {
 25  0 return team;
 26    }
 27   
 28  0 public void setTeam(Person[] t)
 29    {
 30  0 team = t;
 31    }
 32   
 33  0 public Person getPerson(int index)
 34    {
 35  0 return team[index];
 36    }
 37   
 38  2 public void setPerson(int index, Person p)
 39    {
 40  2 team[index] = p;
 41    }
 42    }