ProjectDefinition.st
changeset 15366 5b5b28b61455
parent 15343 d46cfae69fd4
child 15367 62084d5299ff
equal deleted inserted replaced
15365:d77ca24522dc 15366:5b5b28b61455
   829      self unixPathToTopFor: #'stx:goodies/foo'
   829      self unixPathToTopFor: #'stx:goodies/foo'
   830     "
   830     "
   831 
   831 
   832     "Created: / 14-09-2006 / 14:59:53 / cg"
   832     "Created: / 14-09-2006 / 14:59:53 / cg"
   833 ! !
   833 ! !
   834 
       
   835 
   834 
   836 !ProjectDefinition class methodsFor:'accessing - packaging'!
   835 !ProjectDefinition class methodsFor:'accessing - packaging'!
   837 
   836 
   838 classNames:aCollectionOfClassNames
   837 classNames:aCollectionOfClassNames
   839     "set the set of classes"
   838     "set the set of classes"
  6321     aSetOfClasses
  6320     aSetOfClasses
  6322         do:[:aClass |
  6321         do:[:aClass |
  6323             self
  6322             self
  6324                 addReferencesToClassesFromGlobalsInMethods:
  6323                 addReferencesToClassesFromGlobalsInMethods:
  6325                     (aClass theNonMetaclass methodDictionary values
  6324                     (aClass theNonMetaclass methodDictionary values
  6326                         select:[:m | m isExtension not])
  6325                         reject:[:m | m isExtension])
  6327                 to:usedClassReasons.
  6326                 to:usedClassReasons.
  6328 
  6327 
  6329             self
  6328             self
  6330                 addReferencesToClassesFromGlobalsInMethods:
  6329                 addReferencesToClassesFromGlobalsInMethods:
  6331                     (aClass theMetaclass methodDictionary values
  6330                     (aClass theMetaclass methodDictionary values
  6332                         select:[:m | m isExtension not])
  6331                         reject:[:m | m isExtension])
  6333                 to:usedClassReasons.
  6332                 to:usedClassReasons.
  6334         ].
  6333         ].
  6335 
  6334 
  6336     "Modified: / 10-10-2006 / 23:03:45 / cg"
  6335     "Modified: / 10-10-2006 / 23:03:45 / cg"
  6337 !
  6336 !
  7428 ! !
  7427 ! !
  7429 
  7428 
  7430 !ProjectDefinition class methodsFor:'documentation'!
  7429 !ProjectDefinition class methodsFor:'documentation'!
  7431 
  7430 
  7432 version
  7431 version
  7433     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.469 2013-06-03 10:31:47 cg Exp $'
  7432     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.470 2013-06-04 10:47:24 cg Exp $'
  7434 !
  7433 !
  7435 
  7434 
  7436 version_CVS
  7435 version_CVS
  7437     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.469 2013-06-03 10:31:47 cg Exp $'
  7436     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.470 2013-06-04 10:47:24 cg Exp $'
  7438 !
  7437 !
  7439 
  7438 
  7440 version_SVN
  7439 version_SVN
  7441     ^ '$ Id: ProjectDefinition.st 10645 2011-06-09 15:28:45Z vranyj1  $'
  7440     ^ '$ Id: ProjectDefinition.st 10645 2011-06-09 15:28:45Z vranyj1  $'
  7442 ! !
  7441 ! !