Up

EOEvent class documentation

Authors

Generated by ayers

Contents -

  1. Software documentation for the EOEvent class
  2. EOEvent types
  3. EOEvent variables

Software documentation for the EOEvent class

EOEvent : NSObject

Declared in:
EOControl/EOEvent.h
WARNING!!! This class is currently completely unimplemented.

Instance Variables

Method summary

aggregateEvents: bySignatureOfType: 

+ (NSArray*) aggregateEvents: (NSArray*)events bySignatureOfType: (EOEventSignatureType)tag;
Description forthcoming.

eventTypeDescriptions 

+ (NSDictionary*) eventTypeDescriptions;
Description forthcoming.

groupEvents: bySignatureOfType: 

+ (NSArray*) groupEvents: (NSArray*)events bySignatureOfType: (EOEventSignatureType)tag;
Description forthcoming.

comment 

- (NSString*) comment;
Description forthcoming.

displayComponentName 

- (NSString*) displayComponentName;
Description forthcoming.

duration 

- (int) duration;
Description forthcoming.

durationWithoutSubevents 

- (int) durationWithoutSubevents;
Description forthcoming.

info 

- (id) info;
Description forthcoming.

markAtomicWithInfo: 

- (void) markAtomicWithInfo: (id)info;
Description forthcoming.

markEnd 

- (void) markEnd;
Description forthcoming.

markStartWithInfo: 

- (void) markStartWithInfo: (id)info;
Description forthcoming.

parentEvent 

- (EOEvent*) parentEvent;
Description forthcoming.

setInfo: 

- (void) setInfo: (id)info;
Description forthcoming.

setType: 

- (void) setType: (NSString*)type;
Description forthcoming.

signatureOfType: 

- (id) signatureOfType: (EOEventSignatureType)tag;
Description forthcoming.

startDate 

- (NSCalendarDate*) startDate;
Description forthcoming.

subevents 

- (NSArray*) subevents;
Description forthcoming.

title 

- (NSString*) title;
Description forthcoming.

type 

- (NSString*) type;
Description forthcoming.



Instance Variables for EOEvent Class

_child

@protected EOEvent* _child;
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.

_duration

@protected double _duration;
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.

_encountered

@protected double _encountered;
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.

_info

@protected id _info;
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.

_next

@protected EOEvent* _next;
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.

_parent

@protected EOEvent* _parent;
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.

_type

@protected NSString* _type;
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.




EOEvent types

EOEventSignatureType

typedef enum ... EOEventSignatureType;
Description forthcoming.

EOEvent variables

EOEventGroupName

NSString* EOEventGroupName;
Description forthcoming.


Up