DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ A T

⟦06611fdd1⟧ TextFile

    Length: 5862 (0x16e6)
    Types: TextFile
    Names: »ASA_REQUIREMENT«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦bb25a46d4⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦bb25a46d4⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦bb25a46d4⟧ 
            └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

class ASA_REQUIREMENT (4668793) is

    type EDIT_ACTION (1) is (WS_ONLY,
                             WS_ELSE_LOCAL,
                             WS_ELSE_MESSAGE,
                             LOCAL,
                             MESSAGE_ONLY);
    
    type KIND (2) is        (FUNCTIONAL,
                             PERFORMANCE,  
                             EXTERNAL_INTERFACE,  
                             OPERATIONAL,  
                             RESOURCE,  
                             QUALIFICATION_TESTING,  
                             ACCEPTANCE_TESTING,  
                             DOCUMENTATION,  
                             QUALITY,  
                             SAFETY,  
                             RELIABILITY,  
                             MAINTAINABILITY,  
                             DEVELOPMENT_AND_VERIFICATION,  
                             DESIGN_AND_PROGRAMMING,  
                             REUSE_AND_COMMONALITY);

    PARENT_NAME : STRING (editable);
    CONNECTED   : BOOLEAN (editable;
                           default => TRUE);

    CREATE.DIRECTORY_SUBCLASS : STRING (constant;
                                        non_display;
                                        default => "Text");
    CREATE.INITIAL_SUBOBJECTS : STRING (constant;
                                        non_display; 
                                        default => "");
                                                     
    EDIT.ALLOW_EDIT      : BOOLEAN (constant;
                                    non_display;
                                    default => TRUE);
    EDIT.BANNER          : STRING (constant;
                                   non_display;
                                   default => "Text");
    EDIT.HEADER          : STRING (constant;
                                   non_display;
                                   default => "");
    EDIT.OBJECT          : STRING (constant;
                                   non_display;
                                   default => "");
    EDIT.WS_MESSAGE_TEXT : STRING (constant;
                                   non_display;
                                   default => "");
    EDIT.MESSAGE_TEXT    : STRING (constant;
                                   non_display;
                                   default => "");
    EDIT.DISPLAY_ACTION  : EDIT_ACTION (non_display;
                                        default => LOCAL);
        
    DATA.CONTEXT    : STRING (constant;
                              non_display;
                              default => "<PARENT>");
    DATA.HOST       : STRING (constant;
                              non_display;
                              default => "<PARENT>");
    DATA.NAME       : STRING (constant;
                              non_display;
                              default => "<PARENT>");

    ASA.DEPENDENTS       : STRING  (non_display;
                                    default => "");   
    ASA.ID               : NATURAL (default => 1);
    ASA.REQUIREMENT_KIND : KIND (default => PERFORMANCE);
    ASA.REQUIREMENT_TEXT : STRING (editable;
                                   default => "");

    ASA.UPDATE_TIME      : DATE (constant;
                                 non_display;
                                 default => "<PARENT>");

    IO.FORM_MAP  : STRING (constant;
                           non_display;
                           default => "Io_Open (Input) => External;" &
                                      "Io_Read_Bytes (Input) => External;" &
                                      "Io_Read_String (Input) => External;" &
                                      "Io_End_Of_File (Input) => External;" &
                                      "Io_Reset (Input) => External;" &
                                      "Io_Close (Input) => External;" &
                                      "Io_Create => raise USE_ERROR;" &
                                      "Io_Delete => raise USE_ERROR;" &
                                      "Io_Write_Bytes => raise USE_ERROR;" &
                                      "Io_Write_String => raise USE_ERROR;" &
                                      "others => External;");


    DISPATCH.MAP : STRING (non_display;
                           constant;
                           default =>
                              "Image_Name => External;" &
                              "Build_Image => External;" &
                              "Post_Commit => External;" &
                              "Semanticize => Default;" &
                              "Complete => Default;" &
                              "Edit => External;" &
                              "Definition => Default;" &
                              "Enclosing => Default;" &
                              "Elide => Default;" &
                              "Expand => Default;" &
                              "Undo => Default;" &
                              "Redo => Default;" &
                              "Promote => Default;" &
                              "Demote => Default;" &
                              "Format => Default;" &
                              "Revert => Default;" &
                              "Sort_Image => Default;" &
                              "Delete => Default;" &
                              "Pre_Check_In => Default;" &
                              "Post_Check_In => Default;" &
                              "Pre_Check_Out => Default;" &
                              "Post_Check_Out => Default;" &
                              "Pre_Cmvc_Copy => Default;" &
                              "Post_Cmvc_Copy => Default;" &
                              "Pre_Make_Controlled => Default;" &
                              "Output => Default;" &
                              "Input => Default;");

end ASA_REQUIREMENT