Tools__MethodCategoryList.st
changeset 15268 85d7e14cdce0
parent 15225 74cdc390cf25
child 15321 5b7f637123db
equal deleted inserted replaced
15267:f03e2a01f281 15268:85d7e14cdce0
   244     ^ false.
   244     ^ false.
   245 !
   245 !
   246 
   246 
   247 filterClassVars
   247 filterClassVars
   248     filterClassVars isNil ifTrue:[
   248     filterClassVars isNil ifTrue:[
   249         filterClassVars := false asValue.
   249         filterClassVars := ValueHolder with:false.
   250         filterClassVars addDependent:self
   250         filterClassVars addDependent:self
   251     ].
   251     ].
   252     ^  filterClassVars
   252     ^  filterClassVars
   253 
   253 
   254     "Modified: / 31.1.2000 / 00:56:31 / cg"
   254     "Modified: / 31.1.2000 / 00:56:31 / cg"
   268     "Created: / 5.2.2000 / 13:42:10 / cg"
   268     "Created: / 5.2.2000 / 13:42:10 / cg"
   269 !
   269 !
   270 
   270 
   271 methodVisibilityHolder
   271 methodVisibilityHolder
   272     methodVisibilityHolder isNil ifTrue:[
   272     methodVisibilityHolder isNil ifTrue:[
   273         methodVisibilityHolder := false asValue.
   273         methodVisibilityHolder := ValueHolder with:false.
   274         methodVisibilityHolder addDependent:self
   274         methodVisibilityHolder addDependent:self
   275     ].
   275     ].
   276     ^  methodVisibilityHolder
   276     ^  methodVisibilityHolder
   277 !
   277 !
   278 
   278 
   289     "Created: / 5.2.2000 / 13:42:10 / cg"
   289     "Created: / 5.2.2000 / 13:42:10 / cg"
   290 !
   290 !
   291 
   291 
   292 noAllItem
   292 noAllItem
   293     noAllItem isNil ifTrue:[
   293     noAllItem isNil ifTrue:[
   294         noAllItem := false asValue.
   294         noAllItem := ValueHolder with:false.
   295         noAllItem addDependent:self
   295         noAllItem addDependent:self
   296     ].
   296     ].
   297     ^  noAllItem
   297     ^  noAllItem
   298 !
   298 !
   299 
   299 
   307     ].
   307     ].
   308 !
   308 !
   309 
   309 
   310 packageFilterOnInput
   310 packageFilterOnInput
   311     packageFilterOnInput isNil ifTrue:[
   311     packageFilterOnInput isNil ifTrue:[
   312         packageFilterOnInput := nil asValue.
   312         packageFilterOnInput := ValueHolder with:nil.
   313         packageFilterOnInput addDependent:self
   313         packageFilterOnInput addDependent:self
   314     ].
   314     ].
   315     ^  packageFilterOnInput
   315     ^  packageFilterOnInput
   316 !
   316 !
   317 
   317 
   368     ^ self selectionHolder:aValueHolder
   368     ^ self selectionHolder:aValueHolder
   369 !
   369 !
   370 
   370 
   371 showPseudoProtocols
   371 showPseudoProtocols
   372     showPseudoProtocols isNil ifTrue:[
   372     showPseudoProtocols isNil ifTrue:[
   373         showPseudoProtocols := true asValue.
   373         showPseudoProtocols := ValueHolder with:true.
   374         showPseudoProtocols addDependent:self
   374         showPseudoProtocols addDependent:self
   375     ].
   375     ].
   376     ^  showPseudoProtocols
   376     ^  showPseudoProtocols
   377 !
   377 !
   378 
   378 
   386     ].
   386     ].
   387 !
   387 !
   388 
   388 
   389 variableFilter
   389 variableFilter
   390     variableFilter isNil ifTrue:[
   390     variableFilter isNil ifTrue:[
   391         variableFilter := false asValue.
   391         variableFilter := ValueHolder with:false.
   392         variableFilter addDependent:self
   392         variableFilter addDependent:self
   393     ].
   393     ].
   394     ^  variableFilter
   394     ^  variableFilter
   395 
   395 
   396     "Modified: / 31.1.2000 / 00:56:31 / cg"
   396     "Modified: / 31.1.2000 / 00:56:31 / cg"
  2122 ! !
  2122 ! !
  2123 
  2123 
  2124 !MethodCategoryList class methodsFor:'documentation'!
  2124 !MethodCategoryList class methodsFor:'documentation'!
  2125 
  2125 
  2126 version
  2126 version
  2127     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.107 2015-02-07 17:59:00 cg Exp $'
  2127     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.108 2015-02-13 11:09:04 cg Exp $'
  2128 !
  2128 !
  2129 
  2129 
  2130 version_CVS
  2130 version_CVS
  2131     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.107 2015-02-07 17:59:00 cg Exp $'
  2131     ^ '$Header: /cvs/stx/stx/libtool/Tools__MethodCategoryList.st,v 1.108 2015-02-13 11:09:04 cg Exp $'
  2132 ! !
  2132 ! !
  2133 
  2133 
  2134 
  2134 
  2135 MethodCategoryList initialize!
  2135 MethodCategoryList initialize!
  2136 MethodCategoryList::CachedMethodInfo initialize!
  2136 MethodCategoryList::CachedMethodInfo initialize!