added: #matchedFilesList
authorClaus Gittinger <cg@exept.de>
Thu, 12 Jan 2012 02:57:03 +0100
changeset 11107 17342ca15467
parent 11106 86ac37a9a382
child 11108 f13e428f8d06
added: #matchedFilesList
AbstractFileFinderApplicationComponent.st
--- a/AbstractFileFinderApplicationComponent.st	Thu Jan 12 02:55:27 2012 +0100
+++ b/AbstractFileFinderApplicationComponent.st	Thu Jan 12 02:57:03 2012 +0100
@@ -229,6 +229,15 @@
     ^ hasListEntries.
 !
 
+matchedFilesList
+
+    matchedFilesList isNil ifTrue:[
+        matchedFilesList := List new.
+        matchedFilesList addDependent:self.
+    ].
+    ^ matchedFilesList.
+!
+
 resultList
     resultList isNil ifTrue:[
         resultList := List new.
@@ -462,9 +471,9 @@
 !AbstractFileFinderApplicationComponent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.4 2012-01-12 01:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.5 2012-01-12 01:57:03 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.4 2012-01-12 01:07:34 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractFileFinderApplicationComponent.st,v 1.5 2012-01-12 01:57:03 cg Exp $'
 ! !