AbstractOperatingSystem.st
branchjv
changeset 17815 956b46750806
parent 17814 b75a7f0c346b
child 17834 04ff72c5039a
--- a/AbstractOperatingSystem.st	Mon Dec 20 07:13:27 2010 +0000
+++ b/AbstractOperatingSystem.st	Fri Feb 04 23:09:23 2011 +0000
@@ -6724,6 +6724,16 @@
     dayInWeek := dayInWeekArg.
 ! !
 
+!AbstractOperatingSystem::TimeInfo methodsFor:'converting'!
+
+asDate
+    ^ Date new year:year month:month day:day.
+!
+
+asTime
+    ^ Time hours:hours minutes:minutes seconds:seconds
+! !
+
 !AbstractOperatingSystem::TimeZoneInfo class methodsFor:'documentation'!
 
 documentation
@@ -6995,15 +7005,15 @@
 !AbstractOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Id: AbstractOperatingSystem.st 10602 2010-12-20 07:13:27Z vranyj1 $'
+    ^ '$Id: AbstractOperatingSystem.st 10604 2011-02-04 23:09:23Z vranyj1 $'
 !
 
 version_CVS
-    ^ 'Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.206 2010/12/01 19:52:36 stefan Exp '
+    ^ 'Header: /cvs/stx/stx/libbasic/AbstractOperatingSystem.st,v 1.207 2011/01/24 13:17:37 stefan Exp '
 !
 
 version_SVN
-    ^ '$Id: AbstractOperatingSystem.st 10602 2010-12-20 07:13:27Z vranyj1 $'
+    ^ '$Id: AbstractOperatingSystem.st 10604 2011-02-04 23:09:23Z vranyj1 $'
 ! !
 
 AbstractOperatingSystem initialize!
@@ -7013,3 +7023,4 @@
 
 
 
+