Package net.sourceforge.processdash.data.repository

Examples of net.sourceforge.processdash.data.repository.DataEvent


    }

    public void dataValuesChanged(Vector v) throws RemoteException {
        boolean changed = false;
        for (Iterator i = v.iterator(); i.hasNext();) {
            DataEvent e = (DataEvent) i.next();
            if (handleEvent(e))
                changed = true;
        }
        if (changed && statusOut != null)
            recalc();
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.data.repository.DataEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.