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

  1. #---------------------------------------------------------------------------
  2. #
  3. #      (c)     Westmount Technology    1994
  4. #
  5. #      File:           @(#)cbnmtpfilt.tcl    1.2
  6. #      Author:         <generated>
  7. #      Description:
  8. #---------------------------------------------------------------------------
  9. # SccsId = @(#)cbnmtpfilt.tcl    1.2   10 Oct 1995 Copyright 1994 Westmount Technology
  10.  
  11. # Start user added include file section
  12. # End user added include file section
  13.  
  14. require "cbfilterel.tcl"
  15.  
  16. Class CBNmTpFilterElement : {CBFilterElement} {
  17.     constructor
  18.     method destructor
  19.     method letsPass
  20.     attribute valueScript
  21. }
  22.  
  23. constructor CBNmTpFilterElement {class this name propDefinition valueScript} {
  24.     set this [CBFilterElement::constructor $class $this $name $propDefinition]
  25.     $this valueScript $valueScript
  26.     # Start constructor user section
  27.     # End constructor user section
  28.     return $this
  29. }
  30.  
  31. method CBNmTpFilterElement::destructor {this} {
  32.     # Start destructor user section
  33.     # End destructor user section
  34.     $this CBFilterElement::destructor
  35. }
  36.  
  37. method CBNmTpFilterElement::letsPass {this feature} {
  38.     if {![$this enabled]} {
  39.         return 1
  40.     }
  41.  
  42.     return [$this match [eval [$this valueScript]]]
  43. }
  44.  
  45. # Do not delete this line -- regeneration end marker
  46.  
  47.