Package com.webobjects.eocontrol

Examples of com.webobjects.eocontrol.EOEvent


        webEvents = new NSMutableArray(halfCount);
        eofEvents = new NSMutableArray(halfCount);

        Enumeration anEnumerator = allCenters.objectEnumerator();
        while (anEnumerator.hasMoreElements()) {
            EOEvent e = (EOEvent) anEnumerator.nextElement();
            if (e instanceof WOEvent)
                webEvents.addObject(e);
            else eofEvents.addObject(e);
        }
    }
View Full Code Here


        _cacheWebEofEvents();

        n = (webEvents != null) ? webEvents.count() : 0;
       
        for (i = 0, time = 0; i < n; i++) {
            EOEvent  e = (EOEvent) webEvents.objectAtIndex(i);
            if (e instanceof WOEvent)
                time = time + (int) e.durationWithoutSubevents();
        }

        return time;
    }
View Full Code Here

        _cacheWebEofEvents();

        n = (eofEvents != null) ? eofEvents.count() : 0;
        for (i = 0, time = 0; i < n; i++) {
            EOEvent  e = (EOEvent) eofEvents.objectAtIndex(i);
            if (!(e instanceof WOEvent))
                time = time + (int) e.durationWithoutSubevents();
        }

        return time;
    }
View Full Code Here

     */
    public String displayComponentName()
    {
        WOEventDisplayPage ctr;
        int level, group;
        EOEvent obj;

        obj = object();
        ctr = controller();
        level = ctr.displayLevelForEvent(obj);
        group = ctr.groupTagForDisplayLevel(level);
View Full Code Here

TOP

Related Classes of com.webobjects.eocontrol.EOEvent

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.