ProjectDefinition.st
changeset 13950 a997dd517a4c
parent 13899 d769ad2935e6
child 13959 a2fd3561bb67
equal deleted inserted replaced
13949:b82c0fc2b875 13950:a997dd517a4c
  6107 allClassNames
  6107 allClassNames
  6108     ^ self classNamesForWhich:[:nm :attr | true ].
  6108     ^ self classNamesForWhich:[:nm :attr | true ].
  6109 !
  6109 !
  6110 
  6110 
  6111 allClasses
  6111 allClasses
  6112     ^ self allClassNames collect:[:nm | Smalltalk classNamed:nm]
  6112     ^ self allClassNames 
       
  6113         collect:[:nm | 
       
  6114             |cls|
       
  6115 
       
  6116             cls := Smalltalk classNamed:nm.
       
  6117             cls isNil ifTrue:[
       
  6118                 Transcript showCR:('%1: failed to autoload class %2' bindWith:self name with:nm)
       
  6119             ].
       
  6120             cls
       
  6121         ]
       
  6122         thenSelect:[:cls | cls notNil ].
  6113 
  6123 
  6114     "Created: / 06-08-2011 / 15:47:36 / cg"
  6124     "Created: / 06-08-2011 / 15:47:36 / cg"
  6115 !
  6125 !
  6116 
  6126 
  6117 allExtensionClasses
  6127 allExtensionClasses
  6639 ! !
  6649 ! !
  6640 
  6650 
  6641 !ProjectDefinition class methodsFor:'documentation'!
  6651 !ProjectDefinition class methodsFor:'documentation'!
  6642 
  6652 
  6643 version
  6653 version
  6644     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.377 2012-01-09 10:09:44 cg Exp $'
  6654     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.378 2012-01-19 16:27:09 cg Exp $'
  6645 !
  6655 !
  6646 
  6656 
  6647 version_CVS
  6657 version_CVS
  6648     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.377 2012-01-09 10:09:44 cg Exp $'
  6658     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.378 2012-01-19 16:27:09 cg Exp $'
  6649 !
  6659 !
  6650 
  6660 
  6651 version_SVN
  6661 version_SVN
  6652     ^ '§ Id: ProjectDefinition.st 10645 2011-06-09 15:28:45Z vranyj1  §'
  6662     ^ '§ Id: ProjectDefinition.st 10645 2011-06-09 15:28:45Z vranyj1  §'
  6653 ! !
  6663 ! !