home *** CD-ROM | disk | FTP | other *** search
- Package Data_Dictionary is
-
- -- The data dictionary is a collection of records which describe
- -- various Ada declarations tha programs.
- -- Tools are provided to create, edit, and extract information from
- -- the data dictionary. The format and content of each kind of
- -- entry in the data dictionary is user defineable. Associated with
- -- each type of record is a display form for use while interactively
- -- creating or updating the data dictionary entry.
-
- Procedure CREATE_FORM(NEW_FORM : in form_definition_type);
- -- Creates a new form type and installs it in the system.
-
- Procedure OPEN_DICTIONARY(Data_dictionary : in data_dictionary_file_type);
- -- Allows user to create and edit records in a data dictionary.
- -- Records can be created, deleted, and edited. Information can be
- -- extracted from the dictionary and output in the form of a report.
- -- For example, all available TYPES can be listed in alphabetical
- -- order with descriptive information on each type.
-
- Package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (Developing_organization => "Intermetrics, Inc",
- Author => "Michael Gordon"
- Contact => "Bill Toscano",
- Address => ("733 Concord Ave."
- "Cambridge", "MA", "02138"),
- Phone => (617,661,1840)
- Date_Submitted => (15, Nov, 1984));
-
- Package Technical_Parameters is new Technical_Parameters_Package
- (Lines_of_Source_Code => TBD,
- Development_Compiler => (IBM3083, AIE_UTS),
- Planned_compilers_supported => ((DECVAX, DECADA)
- (DECVAX, TSIADA)),
- Auxilliary_files_size => (TBD));
-
- Package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (Completed_events => ((PDR, (15, Oct, 1984)));
-
- (Scheduled_events => ((CDR, (19, Dec, 1984)),
- (first_build, (14, Jan, 1985))),
- (Delivery, (15, Jul, 1985)));
-
- end Data_Dictionary;
-