/* Copyright 2000 Charles G. Wright * This software may be distributed under the terms of the * GNU General Public License. * * $Id: CWObservable.java,v 1.1 2000-06-15 10:14:53-05 chuckles Exp chuckles $ */ import java.util.*; /** Same as Observable, except implements setChanged() as * a public method. */ public class CWObservable extends Observable { public void setChanged(){ super.setChanged(); } }