View Javadoc
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´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 public void changed() 23 { 24 changed = true; 25 } 26 27 public void resetChanged() 28 { 29 changed = false; 30 } 31 32 public boolean isChanged() 33 { 34 return changed; 35 } 36 }

This page was automatically generated by Maven