*** empty log message ***
authorfm
Wed, 16 Aug 2006 18:51:45 +0200
changeset 9545 5b2b83baf8a9
parent 9544 5ee38738942e
child 9546 1e45da4681d4
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Wed Aug 16 18:39:42 2006 +0200
+++ b/ProjectDefinition.st	Wed Aug 16 18:51:45 2006 +0200
@@ -775,15 +775,18 @@
 
 searchForClassesWithProject: aProjectID
 
-    ^ Smalltalk allClasses select:[:cls | cls package == aProjectID].
+    ^ Smalltalk allClasses 
+        select:[:cls | (cls package == aProjectID) ].
 
 "
     self searchForClassesWithProject: #'bosch:dapasx'
     self searchForClassesWithProject: #'bosch:dapasx/datenbasis'
+    self searchForClassesWithProject: #'bosch:dapasx/kernel'
 "
 
     "Created: / 07-08-2006 / 20:42:39 / fm"
     "Modified: / 07-08-2006 / 21:56:25 / fm"
+    "Modified: / 16-08-2006 / 18:50:48 / User"
 !
 
 searchForExtensionsForProject:aProjectID
@@ -854,5 +857,5 @@
 !BuildDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.4 2006-08-16 16:39:42 fm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.5 2006-08-16 16:51:45 fm Exp $'
 ! !