TimestampChange.st
author Claus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 10:56:34 +0100
changeset 4552 51e05f330692
parent 3115 69417e1d1590
child 3158 f8c56a311307
permissions -rw-r--r--
#REFACTORING by exept class: AbstractSourceCodeManager class changed: #printClassRepositorySummaryForClass:on:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3115
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     1
"
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     3
              All Rights Reserved
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     4
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     5
 This software is furnished under a license and may be used
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     6
 only in accordance with the terms of that license and with the
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     8
 be provided or otherwise made available to, or used by, any
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
     9
 other person.  No title to or ownership of the software is
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    10
 hereby transferred.
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    11
"
1440
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
OtherChange subclass:#TimestampChange
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Changes'
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
3115
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    21
!TimestampChange class methodsFor:'documentation'!
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    22
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    23
copyright
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    24
"
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    26
              All Rights Reserved
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    27
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    28
 This software is furnished under a license and may be used
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    29
 only in accordance with the terms of that license and with the
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    31
 be provided or otherwise made available to, or used by, any
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    32
 other person.  No title to or ownership of the software is
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    33
 hereby transferred.
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    34
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    35
"
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    36
! !
1440
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
2168
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    38
!TimestampChange methodsFor:'applying'!
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    39
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    40
apply
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    41
    "apply the change"
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    42
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    43
    "Nothing to do"
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    44
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    45
    "Created: / 06-11-2008 / 08:57:44 / Jan Vrany <vranyj1@fel.cvut.cz>"
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    46
! !
49078787e7cd added: #apply
Claus Gittinger <cg@exept.de>
parents: 1440
diff changeset
    47
1440
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!TimestampChange methodsFor:'printing & storing'!
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
printOn:aStream
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    aStream nextPutAll:'Timestamp: '.
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    source notNil ifTrue:[
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
        aStream nextPutAll:source.
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    ].
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
! !
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!TimestampChange class methodsFor:'documentation'!
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
version
3115
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libbasic3/TimestampChange.st,v 1.3 2013-03-06 17:13:40 cg Exp $'
1440
e6769e36b529 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
! !
3115
69417e1d1590 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 2168
diff changeset
    62