home *** CD-ROM | disk | FTP | other *** search
- Package Design_Requirements_Trace_Package is
-
- -- This tool is used to trace routines and declarations in the
- -- source code back to specific paragraphs in a requirements
- -- document. The output listing shows, for each requirement
- -- referenced in a source file, what program units reference that
- -- requirement. An intermediate file containing the pairs
- -- (location in code, reference cited) can be saved for use in
- -- subsequent invocations. When used in this way, the output report
- -- can show requirements traced to more than one source file.
-
- procedure Trace_Requirements(SOURCE_FILE : in Ada_Source_File_Type;
- OLD_PAIRS : in PAIRS_FILE := null;
- NEW_PAIRS : out PAIRS_FILE := null);
- -- Trace requirements cited in SOURCE_FILE to paragraphs in a
- -- requirements document according to annotations in the source
- -- file. If OLD_PAIRS is specified, include them in the output
- -- listing. If NEW_PAIRS is specified, save all pairs in this file
- -- for subsequent invocations.
-
- procedure Trace_Requirements(SOURCE_FILE : in Diana_Node_Type;
- OLD_PAIRS : in PAIRS_FILE := null;
- NEW_PAIRS : out PAIRS_FILE := null);
- -- Overload for use when Diana is available in the program libray.
-
-
- 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, (18, Mar, 1985)));
-
- end Design_Requirements_Trace_Package;
-