SVN__Configuration.st
branchjv
changeset 1179 a3c51fbc33cf
parent 1172 d9562d11f420
equal deleted inserted replaced
1168:07633e05c812 1179:a3c51fbc33cf
   330 ! !
   330 ! !
   331 
   331 
   332 !Configuration methodsFor:'printing & storing'!
   332 !Configuration methodsFor:'printing & storing'!
   333 
   333 
   334 printOn:aStream
   334 printOn:aStream
   335     "append a printed representation if the receiver to the argument, aStream"
   335     "append a printed representation of the receiver to the argument, aStream"
   336 
   336 
   337     super printOn:aStream.
   337     super printOn:aStream.
   338     aStream nextPut:$(.
   338     aStream nextPut:$(.
   339     name printOn:aStream.
   339     name printOn:aStream.
   340     aStream nextPut:$).
   340     aStream nextPut:$).
   451 ! !
   451 ! !
   452 
   452 
   453 !Configuration::Repository methodsFor:'printing & storing'!
   453 !Configuration::Repository methodsFor:'printing & storing'!
   454 
   454 
   455 printOn:aStream
   455 printOn:aStream
   456     "append a printed representation if the receiver to the argument, aStream"
   456     "append a printed representation of the receiver to the argument, aStream"
   457 
   457 
   458     super printOn:aStream.
   458     super printOn:aStream.
   459     aStream space.
   459     aStream space.
   460     aStream nextPutAll:'package: '.
   460     aStream nextPutAll:'package: '.
   461     package printOn:aStream.
   461     package printOn:aStream.
   494     ^ '$Header$'
   494     ^ '$Header$'
   495 
   495 
   496 !
   496 !
   497 
   497 
   498 version_SVN
   498 version_SVN
   499     ^ '§Id: SVN__Configuration.st 363 2011-08-08 13:49:48Z vranyj1 §'
   499     ^ '$Id$'
   500 ! !
   500 ! !
       
   501