TimestampChange.st
changeset 1440 e6769e36b529
child 2168 49078787e7cd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TimestampChange.st	Mon Jan 09 10:54:28 2006 +0100
@@ -0,0 +1,24 @@
+"{ Package: 'stx:libbasic3' }"
+
+OtherChange subclass:#TimestampChange
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Changes'
+!
+
+
+!TimestampChange methodsFor:'printing & storing'!
+
+printOn:aStream
+    aStream nextPutAll:'Timestamp: '.
+    source notNil ifTrue:[
+        aStream nextPutAll:source.
+    ].
+! !
+
+!TimestampChange class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic3/TimestampChange.st,v 1.1 2006-01-09 09:54:28 cg Exp $'
+! !