/* Copyright 2000 Charles G. Wright * This software may be distributed under the terms of the * GNU General Public License. * * $Id: CWmonitoredElement.java,v 1.1 2000-06-15 10:14:51-05 chuckles Exp chuckles $ */ /** class containing information about a monitored element. */ public class CWmonitoredElement{ Object obj; int index; public CWmonitoredElement(Object o, int i){ obj = o; index = i; } }