home *** CD-ROM | disk | FTP | other *** search
- #---------------------------------------------------------------------------
- #
- # (c) Cadre Technologies Inc. 1996
- #
- # File: @(#)cblongname.tcl 1.2
- # Author: voyager
- # Description: Mapping from ComponentTypes and LabelTypes to their
- # long name. Also present is an array indicating the
- # components that can hold more than one label.
- # Only those used in the PropertyBox of the class browser
- # are mentioned here.
- #---------------------------------------------------------------------------
- # SccsId = @(#)cblongname.tcl 1.2 08 Mar 1996 Copyright 1996 Cadre Technologies Inc.
-
-
- global compLongName
-
- set compLongName(cad_class) "CAD Class"
- set compLongName(cad_container) "CAD Container Class"
- set compLongName(nary_assoc) "n-ary Association"
- set compLongName(association) "Association"
- set compLongName(qualif_assoc) "Qualified Association"
- set compLongName(nary_assoc_conn) "n-ary Association Connector"
- set compLongName(aggregation) "Aggregation"
- set compLongName(qualif_aggr) "Qualified Aggregation"
-
- set compLongName(attribute) "Attribute"
- set compLongName(method) "Method"
- set compLongName(parameter) "Parameter"
-
-
- global labLongName
-
- set labLongName(name) "Name"
- set labLongName(name_type) "Name And Type"
- set labLongName(qualifier) "Qualifier"
- set labLongName(constraint_end) "Constraint At End"
- set labLongName(constraint_start) "Constraint At Start"
- set labLongName(role_start) "Role At Start"
- set labLongName(role_end) "Role At End"
- set labLongName(role) "Role"
-
-
- global multiLabelComp
- set multiLabelComp(association) 1
- set multiLabelComp(qualif_assoc) 1
- set multiLabelComp(nary_assoc_conn) 1
- set multiLabelComp(aggregation) 1
- set multiLabelComp(qualif_aggr) 1
-