Clover coverage report - angkor - 0.4
Coverage timestamp: ti okt 15 2002 22:32:48 CEST
file stats: LOC: 37   Methods: 3
NCLOC: 17   Classes: 1
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
AbstractValueModel.java - 33,3% 33,3% 33,3%
 1   
 /*
 2   
  * Angkor Web Framework
 3   
  *
 4   
  * Distributable under LGPL license.
 5   
  * See terms of license at gnu.org.
 6   
  */
 7   
 
 8   
 package com.tirsen.angkor.widget;
 9   
 
 10   
 
 11   
 /**
 12   
  * <!-- $Id: AbstractValueModel.java,v 1.2 2002/10/07 19:49:20 tirsen Exp $ -->
 13   
  * <!-- $Author: tirsen $ -->
 14   
  *
 15   
  * @author Jon Tirs&acute;n (tirsen@users.sourceforge.net)
 16   
  * @version $Revision: 1.2 $
 17   
  */
 18   
 public abstract class AbstractValueModel implements ValueModel
 19   
 {
 20   
     private boolean changed = false;
 21   
 
 22  19
     public void changed()
 23   
     {
 24  19
         changed = true;
 25   
     }
 26   
 
 27  0
     public void resetChanged()
 28   
     {
 29  0
         changed = false;
 30   
     }
 31   
 
 32  0
     public boolean isChanged()
 33   
     {
 34  0
         return changed;
 35   
     }
 36   
 }
 37