Time.st
changeset 7818 30eb2226645b
parent 7817 3e8e09362313
child 8199 b8b62f3ae7c1
equal deleted inserted replaced
7817:3e8e09362313 7818:30eb2226645b
    66         Filename
    66         Filename
    67 "
    67 "
    68 ! !
    68 ! !
    69 
    69 
    70 !Time class methodsFor:'instance creation'!
    70 !Time class methodsFor:'instance creation'!
       
    71 
       
    72 hour:h minute:m second:s
       
    73     "compatibility"
       
    74 
       
    75     ^ self hours:h minutes:m seconds:s
       
    76 
       
    77     "
       
    78      Time hour:2 minute:33 second:0 
       
    79     "
       
    80 !
    71 
    81 
    72 hour:h minutes:m seconds:s
    82 hour:h minutes:m seconds:s
    73     "return an instance of Time representing the given time.
    83     "return an instance of Time representing the given time.
    74      See also Time now / Date today / AbsoluteTime now.
    84      See also Time now / Date today / AbsoluteTime now.
    75      Obsolete: please use #hours:minutes:seconds:"
    85      Obsolete: please use #hours:minutes:seconds:"
   669 ! !
   679 ! !
   670 
   680 
   671 !Time class methodsFor:'documentation'!
   681 !Time class methodsFor:'documentation'!
   672 
   682 
   673 version
   683 version
   674     ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.70 2003-12-20 00:05:38 cg Exp $'
   684     ^ '$Header: /cvs/stx/stx/libbasic/Time.st,v 1.71 2003-12-20 00:16:44 cg Exp $'
   675 ! !
   685 ! !