![]() | ![]() | |||||||||||||||
|
TeamsThe teams package defines data structures of development teams, such as team members, priorities and time estimate methods. GCC Ada Equivalent: N/A There are three prdefined data structures in the teams package. teams.member defines a person on a team (or the team itself): type teams.member is record description : string; -- description of person skills : string; -- description of skills lang : string; -- contact languages id : natural; -- id number preferred_contact : string; -- preferred communication method email : string; -- primiary email address secondary_email : string; -- secondary email address preferred_name : string; -- preferred name full_name : string; -- complete name chair : string; -- where they sit nickname : string; -- nickname business_phone : string; -- business phone number messenging : string; -- messenging service/id teams : string; -- teams belonging to roles : string; -- roles on the teams active : boolean; -- true if currently active member is_team : boolean; -- true if this is a team/group, rather -- than an individual end record; Project priorities are specified using the enumerated type teams.work_priority:
Project time estimates are specified using the enumerated type teams.work_measure:
See the pragmas section in the reference for more information on how these types are used. |
![]() |
![]() |
![]() |