home *** CD-ROM | disk | FTP | other *** search
/ PC World 1997 November / PCWorld_1997-11_cd.bin / software / programy / komix / DATA.Z / cblongname.tcl < prev    next >
Text File  |  1996-05-29  |  2KB  |  50 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Cadre Technologies Inc.    1996
  4. #
  5. #      File:           @(#)cblongname.tcl    1.2
  6. #      Author:         voyager
  7. #      Description:    Mapping from ComponentTypes and LabelTypes to their
  8. #                      long name. Also present is an array indicating the
  9. #                      components that can hold more than one label.
  10. #                      Only those used in the PropertyBox of the class browser
  11. #                      are mentioned here.
  12. #---------------------------------------------------------------------------
  13. # SccsId = @(#)cblongname.tcl    1.2    08 Mar 1996 Copyright 1996 Cadre Technologies Inc.
  14.  
  15.  
  16. global compLongName
  17.  
  18. set compLongName(cad_class) "CAD Class"
  19. set compLongName(cad_container) "CAD Container Class"
  20. set compLongName(nary_assoc) "n-ary Association"
  21. set compLongName(association) "Association"
  22. set compLongName(qualif_assoc) "Qualified Association"
  23. set compLongName(nary_assoc_conn) "n-ary Association Connector"
  24. set compLongName(aggregation) "Aggregation"
  25. set compLongName(qualif_aggr) "Qualified Aggregation"
  26.  
  27. set compLongName(attribute) "Attribute"
  28. set compLongName(method) "Method"
  29. set compLongName(parameter) "Parameter"
  30.  
  31.  
  32. global labLongName
  33.  
  34. set labLongName(name) "Name"
  35. set labLongName(name_type) "Name And Type"
  36. set labLongName(qualifier) "Qualifier"
  37. set labLongName(constraint_end) "Constraint At End"
  38. set labLongName(constraint_start) "Constraint At Start"
  39. set labLongName(role_start) "Role At Start"
  40. set labLongName(role_end) "Role At End"
  41. set labLongName(role) "Role"
  42.  
  43.  
  44. global multiLabelComp
  45. set multiLabelComp(association) 1
  46. set multiLabelComp(qualif_assoc) 1
  47. set multiLabelComp(nary_assoc_conn) 1
  48. set multiLabelComp(aggregation) 1
  49. set multiLabelComp(qualif_aggr) 1
  50.