Informační tok Funkční structura Datová struktura ER model Modulová struktura Typová struktura Relační model Dokumentace


[Celkový datový model] [Funkce] [Externí rohraní] [Stavové diagramy] [Datové elementy] [Entity] [Relace]
[Databáze] [Události] [Materiály] [Generovací funkce] [Vyhodnocovací funkce] [Konfigurace] [Uživatelé] [Projekt] [Home]



Vyhodnocovací funkce
DSD_Tree
(Data Structure/Event/Material)


Vytvořeno: 11-01-2000 13:37:56
Poslední změna: 12-03-2002 13:03:34

Outputs a tree diagram of the data structure with explaining text printed near the elements.

Modul

Module: Data Structure/Event/Material

Zdrojový kód:

PROCEDURE DSD_Tree FOR Datastructure
BEGIN
/*
    Outputs a tree diagram of the data structure with explaining text printed near the elements.
    
    You can modify the generated output with following variables
    maxLevel% - recursion depth (-1 means complete tree)
    onlyParts! - False - print all data structure elements
                 True - print only containing parts
    withInfo! - False - print only element name
                 True - print name with special with explaining text
*/

    maxLevel% = -1;
    onlyParts! = FALSE;
    withInfo! = TRUE;
    IF Type = "" THEN
        PRINT {"Arial", 12, BOLD} "Stromový diagram datové struktury ";
        PRINT {"Arial", 12, ITALIC, BOLD} CONV$ (Boxname);
        PRINT NL(2);
        CALL DSD_TraverseStart (Name, onlyParts!, maxLevel%, dsdElemList$);
        CALL DSD_PrintElementTree (dsdElemList$, withInfo!);
    END

END


Generováno: 16.10.2003 7:41 Systém: C:\Documents and Settings\hajsman\Dokumenty\Vyuka\Irs2\Projekt case40\Projekt03.csf Generováno systémem case/4/0
Vygeneroval: Administrator Soubor: C:\Documents and Settings\hajsman\Dokumenty\Vyuka\Irs2\Projekt case40\html\179416453.htm (C) microTOOL GmbH 2002