home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / cboperfilt.tcl < prev    next >
Text File  |  1996-05-29  |  3KB  |  81 lines

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cboperfilt.tcl    1.7
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cboperfilt.tcl    1.7   04 Apr 1996 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cbfilter.tcl"
  15.  
  16. Class CBOperFilter : {CBFilter} {
  17.     constructor
  18.     method destructor
  19. }
  20.  
  21. constructor CBOperFilter {class this name propKnowledgeDB} {
  22.     set this [CBFilter::constructor $class $this $name $propKnowledgeDB]
  23.     # Start constructor user section
  24.  
  25.     PropLocation new .propLocation \
  26.         -phaseType [[[[ClientContext::global] currentPhase] phase] type] \
  27.         -diagramType $CAD_TYPE \
  28.         -componentType $CDM_METHOD
  29.  
  30.     # Component (NameType label) properties
  31.     .propLocation labelType $LT_NAME_TYPE
  32.     .propLocation containerKind Component
  33.     .propLocation containerType $CDM_METHOD
  34.     set propHolder {$feature getMatrixComponent}
  35.     $this addFilterElements [$propKnowledgeDB \
  36.         definitions .propLocation] $propHolder
  37.  
  38.     # Name item properties
  39.     .propLocation containerKind Item
  40.     .propLocation containerType $IT_PROCESS
  41.     set propHolder {set wrk [$feature getNameWorkItem]; \
  42.         if {[$wrk isNil]} {set propObject $wrk} \
  43.         else {set propObject [$wrk properties]}}
  44.     $this addFilterElements [$propKnowledgeDB \
  45.         definitions .propLocation] $propHolder
  46.  
  47.     # Type item properties
  48.     .propLocation containerKind Item
  49.     .propLocation containerType $IT_CLASS
  50.     set propHolder {set wrk [$feature getTypeWorkItem]; \
  51.         if {[$wrk isNil]} {set propObject $wrk} \
  52.         else {set propObject [$wrk properties]}}
  53.     $this addFilterElements [$propKnowledgeDB \
  54.         definitions .propLocation] $propHolder
  55.  
  56.     # Implicit properties
  57.     $this addImplicitPropFilterElement $COMP_CLASS_ATTR "Is Class Feature" \
  58.         "CheckButton" "-state 0"
  59.     #$this addImplicitPropFilterElement $COMP_HAS_PARAMLIST \
  60.     #    "Has Parameter List" "CheckButton" "-state 0"
  61.     $this addImplicitPropFilterElement $COMP_ABSTRACT "Is Abstract" \
  62.         "CheckButton" "-state 0"
  63.  
  64.     .propLocation delete
  65.  
  66.     $this loadFromString [m4_var get M4_operation_filter]
  67.     $this keepChanges
  68.  
  69.     # End constructor user section
  70.     return $this
  71. }
  72.  
  73. method CBOperFilter::destructor {this} {
  74.     # Start destructor user section
  75.     # End destructor user section
  76.     $this CBFilter::destructor
  77. }
  78.  
  79. # Do not delete this line -- regeneration end marker
  80.  
  81.