Documentation Archive Developer
Search
PATH  Documentation > WebObjects 4.5 > EOControl Reference

Table of Contents

EOAggregateEvent


Inherits from:
EOEvent : NSObject
Package:
com.apple.yellow.eocontrol


Class Description


An instance of the EOAggregateEvent class is used to aggregate into one event multiple EOEvent objects that have the same aggregate signature. This one aggregate event is typically used in a WOEventDisplay page in a WebObjects application to display the sum of all of the aggregated events' durations.


Note: This class doesn't exist in the com.apple.client.eocontrol package. The event logging system is not available for Java Client. In a Java Client application, you can view event logging information for the server side of the application, but not on the client side.




Instance Methods



addEvent

public void addEvent(EOEvent event)

Adds event to the set of events that the receiver aggregates.

events

public NSArray events()

Returns the set of events that the receiver aggregates. In the typical scenario, an EOAggregateEvent always has at least one event-the event for which the event logging system created the aggregate event.


Table of Contents