Class.st
branchjv
changeset 18561 73656aba2c89
parent 18210 d1768187cb74
parent 18559 2f3d69fc53f0
child 18608 7d521f25267c
equal deleted inserted replaced
18556:2c67b0fa6ff5 18561:73656aba2c89
  1492 
  1492 
  1493     "Created: / 19-09-2006 / 22:02:06 / cg"
  1493     "Created: / 19-09-2006 / 22:02:06 / cg"
  1494 !
  1494 !
  1495 
  1495 
  1496 projectDefinitionClass
  1496 projectDefinitionClass
  1497     "return the project definition of the classes package"
  1497     "return the project definition of the classes' package.
       
  1498      Eg. for Array, this would return the stx_libbasic project definition class."
  1498 
  1499 
  1499     ^ ProjectDefinition definitionClassForPackage: self package
  1500     ^ ProjectDefinition definitionClassForPackage: self package
  1500 
  1501 
  1501     "
  1502     "
  1502      Object projectDefinitionClass productVersion
  1503      Object projectDefinitionClass productVersion
  1966     self withAllPrivateClassesDo:[:cls | coll add:cls].
  1967     self withAllPrivateClassesDo:[:cls | coll add:cls].
  1967     ^ coll
  1968     ^ coll
  1968 
  1969 
  1969     "Created: / 18-07-2011 / 09:14:38 / cg"
  1970     "Created: / 18-07-2011 / 09:14:38 / cg"
  1970 ! !
  1971 ! !
  1971 
       
  1972 
  1972 
  1973 !Class methodsFor:'adding & removing'!
  1973 !Class methodsFor:'adding & removing'!
  1974 
  1974 
  1975 removeFromSystem
  1975 removeFromSystem
  1976     "ST-80 compatibility
  1976     "ST-80 compatibility
  5777 ! !
  5777 ! !
  5778 
  5778 
  5779 !Class class methodsFor:'documentation'!
  5779 !Class class methodsFor:'documentation'!
  5780 
  5780 
  5781 version
  5781 version
  5782     ^ '$Header: /cvs/stx/stx/libbasic/Class.st,v 1.656 2015-04-10 14:22:21 stefan Exp $'
  5782     ^ '$Header$'
  5783 !
  5783 !
  5784 
  5784 
  5785 version_CVS
  5785 version_CVS
  5786     ^ '$Header: /cvs/stx/stx/libbasic/Class.st,v 1.656 2015-04-10 14:22:21 stefan Exp $'
  5786     ^ '$Header$'
  5787 !
  5787 !
  5788 
  5788 
  5789 version_SVN
  5789 version_SVN
  5790     ^ '$ Id: Class.st 10643 2011-06-08 21:53:07Z vranyj1  $'
  5790     ^ '$ Id: Class.st 10643 2011-06-08 21:53:07Z vranyj1  $'
  5791 ! !
  5791 ! !