Up

EOEventCenter class documentation

Authors

Generated by ayers

Contents -

  1. Software documentation for the EOEventCenter class
  2. Software documentation for the NSObject(EOEventRecordingHandler) informal protocol
  3. Software documentation for the EOEventRecordingHandler protocol

Software documentation for the EOEventCenter class

EOEventCenter : NSObject

Declared in:
EOControl/EOEventCenter.h
Availability: OpenStep

WARNING!!! This class is currently completely unimplemented.

Instance Variables

Method summary

allCenters 

+ (NSArray*) allCenters;
Availability: OpenStep

Description forthcoming.

allEvents 

+ (NSArray*) allEvents;
Availability: OpenStep

Description forthcoming.

cancelEvent: 

+ (void) cancelEvent: (EOEvent*)event;
Availability: OpenStep

Description forthcoming.

currentCenter 

+ (EOEventCenter*) currentCenter;
Availability: OpenStep

Description forthcoming.

eventsOfClass: type: 

+ (NSArray*) eventsOfClass: (Class)eventClass type: (NSString*)type;
Availability: OpenStep

Description forthcoming.

markAtomicEvent: info: 

+ (void) markAtomicEvent: (EOEvent*)event info: (id)info;
Availability: OpenStep

Description forthcoming.

markEndOfEvent: 

+ (void) markEndOfEvent: (EOEvent*)event;
Availability: OpenStep

Description forthcoming.

markStartOfEvent: info: 

+ (void) markStartOfEvent: (EOEvent*)event info: (id)info;
Availability: OpenStep

Description forthcoming.

newEventOfClass: type: 

+ (id) newEventOfClass: (Class)eventClass type: (NSString*)type;
Availability: OpenStep

Description forthcoming.

recordsEventsForClass: 

+ (BOOL) recordsEventsForClass: (Class)eventClass;
Availability: OpenStep

Description forthcoming.

registerEventClass: classPointer: 

+ (void) registerEventClass: (Class)eventClass classPointer: (Class*)classPtr;
Availability: OpenStep

Description forthcoming.

registerEventClass: handler: 

+ (void) registerEventClass: (Class)eventClass handler: (id<EOEventRecordingHandler>)handler;
Availability: OpenStep

Description forthcoming.

registeredEventClasses 

+ (NSArray*) registeredEventClasses;
Availability: OpenStep

Description forthcoming.

resetLogging 

+ (void) resetLogging;
Availability: OpenStep

Description forthcoming.

resumeLogging 

+ (void) resumeLogging;
Availability: OpenStep

Description forthcoming.

rootEvents 

+ (NSArray*) rootEvents;
Availability: OpenStep

Description forthcoming.

rootEventsByDuration 

+ (NSArray*) rootEventsByDuration;
Availability: OpenStep

Description forthcoming.

setRecordsEvents: forClass: 

+ (void) setRecordsEvents: (BOOL)flag forClass: (Class)eventClass;
Availability: OpenStep

Description forthcoming.

suspendLogging 

+ (void) suspendLogging;
Availability: OpenStep

Description forthcoming.

allEvents 

- (NSArray*) allEvents;
Availability: OpenStep

Description forthcoming.

eventsOfClass: type: 

- (NSArray*) eventsOfClass: (Class)eventClass type: (NSString*)type;
Availability: OpenStep

Description forthcoming.

resetLogging 

- (void) resetLogging;
Availability: OpenStep

Description forthcoming.

rootEvents 

- (NSArray*) rootEvents;
Availability: OpenStep

Description forthcoming.



Instance Variables for EOEventCenter Class

_eventCounter

@protected int _eventCounter;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_events

@protected NSHashTable* _events;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_lastEvent

@protected EOEvent* _lastEvent;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_rootEvent

@protected EOEvent* _rootEvent;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.




Software documentation for the NSObject(EOEventRecordingHandler) informal protocol

NSObject(EOEventRecordingHandler)

Declared in:
EOControl/EOEventCenter.h
Conforms to:
EOEventRecordingHandler
Availability: OpenStep

Description forthcoming.
Method summary

setLoggingEnabled: forEventClass: 

- (void) setLoggingEnabled: (BOOL)flag forEventClass: (Class)eventClass;
Availability: OpenStep

Description forthcoming.

Software documentation for the EOEventRecordingHandler protocol

EOEventRecordingHandler

Declared in:
EOControl/EOEventCenter.h
Availability: OpenStep

Description forthcoming.
Method summary

setLoggingEnabled: forEventClass: 

- (void) setLoggingEnabled: (BOOL)flag forEventClass: (Class)eventClass;
Availability: OpenStep

Description forthcoming.


Up