OtherChange.st
author Stefan Vogel <sv@exept.de>
Fri, 31 Mar 2017 15:57:47 +0200
changeset 4232 f02d9d68eabc
parent 2871 edd5c5b18492
child 3158 f8c56a311307
child 4249 e9410a264048
permissions -rw-r--r--
#FEATURE by stefan class: CVSSourceCodeManager class changed: #checkinClass:fileName:directory:module:source:logMessage:force: #checkinClass:fileName:directory:module:source:logMessage:force:asBranch: prepare for branch support (unfinished yet)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1416
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     1
"
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     3
              All Rights Reserved
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     4
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     5
 This software is furnished under a license and may be used
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     6
 only in accordance with the terms of that license and with the
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     8
 be provided or otherwise made available to, or used by, any
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
     9
 other person.  No title to or ownership of the software is
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    10
 hereby transferred.
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    11
"
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    13
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
Change subclass:#OtherChange
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:'type file position'
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Changes'
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1416
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    21
!OtherChange class methodsFor:'documentation'!
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    22
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    23
copyright
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    24
"
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    25
 COPYRIGHT (c) 2004 by eXept Software AG
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    26
              All Rights Reserved
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    27
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    28
 This software is furnished under a license and may be used
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    29
 only in accordance with the terms of that license and with the
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    31
 be provided or otherwise made available to, or used by, any
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    32
 other person.  No title to or ownership of the software is
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    33
 hereby transferred.
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    34
"
21b4a48293cc copyright
Claus Gittinger <cg@exept.de>
parents: 1294
diff changeset
    35
! !
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!OtherChange methodsFor:'accessing'!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
file
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    "return the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    42
    ^ file
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    43
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
file:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    "set the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    48
    file := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    49
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
file:aFilename position:anInteger
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    "set the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    file := aFilename.
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    position := anInteger
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
position
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
    "return the value of the instance variable 'position' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    61
    ^ position
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    62
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
position:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
    "set the value of the instance variable 'position' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    67
    position := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    68
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
type
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
    "return the value of the instance variable 'type' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    73
    ^ type
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    74
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
type:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
    "set the value of the instance variable 'type' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    79
    type := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    80
! !
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    81
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    82
!OtherChange methodsFor:'printing & storing'!
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    83
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    84
printOn:aStream
1441
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    85
    aStream nextPutAll:'OtherChange: '.
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    86
    source notNil ifTrue:[
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    87
        aStream nextPutAll:source.
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    88
    ].
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    89
! !
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
2871
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    91
!OtherChange methodsFor:'testing'!
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    92
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    93
isOtherChange
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    94
    ^ true
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    95
! !
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    96
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    97
!OtherChange class methodsFor:'documentation'!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    98
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    99
version
2871
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   100
    ^ '$Header: /cvs/stx/stx/libbasic3/OtherChange.st,v 1.5 2012-07-31 12:23:08 vrany Exp $'
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   101
!
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   102
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   103
version_SVN
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   104
    ^ '§Id: OtherChange.st 1942 2012-07-27 14:53:23Z vranyj1 §'
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   105
! !