Class Definitions
[In this section a detailed description of all the
classes and their attributes is given. The classes described here are the result of
aggregating the class information found in the Use Case implementations. Here an
aggregation of all the properties and methods of a class is done.]
Class #[Number] [Name]
S# |
Attribute |
M/P |
Data Type |
Prototype/Description |
1 |
[Attribute name] |
P |
[Data type of the
property OR return type of Function, use "--" for a Sub] |
[Description of the
property or method. Whenever it is a method it is required to specify its prototype] |
[[[
Example:
Class #2.c clsFoobar
Attribute |
M/P |
Data Type |
Description/Prototype |
| RetrieveCat |
M |
clsEventCatSet |
Public Function
RetrieveCat() as clsEventCatSet
This method is used to retrieve all the event
categories available. |
| FooName |
P |
String |
Stores the name of the
Foo object. |
| Reset |
M |
-- |
Public Sub Reset(x As
Integer)
Takes an integer x and performs a reset based on x. |
|