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 - metrics - download
Index: B T

⟦49454f80e⟧ TextFile

    Length: 1798 (0x706)
    Types: TextFile
    Names: »B«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

separate (Inquiry_Operations.Select_Attributes.Query_Options)
procedure Select_Value (Index : Category_Type) is
begin
    case Index is
        when Architecture =>
            for Value in Schema.Architecture_Category_Type loop
                if Answer (Schema.Architecture_Category_Type'Image (Value)) then
                    Attribute_Options.Set_Query (Value);
                    exit;
                end if;
            end loop;
        when E_And_V =>
            for Value in Schema.E_And_V_Criterion_Abbreviation_Type loop
                if Answer (Schema.E_And_V_Criterion_Abbreviation_Type'Image
                              (Value)) then
                    Attribute_Options.Set_Query (Value);
                    exit;
                end if;
            end loop;
        when Language_Feature =>
            for Value in Schema.Language_Feature_Abbreviation_Type loop
                if Answer (Schema.Language_Feature_Abbreviation_Type'Image
                              (Value)) then
                    Attribute_Options.Set_Query (Value);
                    exit;
                end if;
            end loop;
        when Statistics =>
            for Value in Schema.Statistics_Type loop
                if Answer (Schema.Statistics_Type'Image (Value)) then
                    Attribute_Options.Set_Query (Value);
                    exit;
                end if;
            end loop;
        when Version =>
            for Value in Schema.Version_Type loop
                if Answer (Schema.Version_Type'Image (Value)) then
                    Attribute_Options.Set_Query (Value);
                    exit;
                end if;
            end loop;
    end case;
end Select_Value;
--*****************************************************************************