OtherChange.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 28 Mar 2013 12:22:48 +0000
branchjv
changeset 3158 f8c56a311307
parent 3128 87750af738dc
parent 2871 edd5c5b18492
child 4384 e28fcaaf93c7
permissions -rw-r--r--
Merged 87750af738dc and 72ca7e81fbbf (branch default - CVS HEAD)
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
3158
f8c56a311307 Merged 87750af738dc and 72ca7e81fbbf (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3128 2871
diff changeset
    37
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!OtherChange methodsFor:'accessing'!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
file
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    "return the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    43
    ^ file
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    44
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
file:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    "set the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    49
    file := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    50
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
file:aFilename position:anInteger
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    "set the value of the instance variable 'file' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    file := aFilename.
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    position := anInteger
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
position
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
    "return the value of the instance variable 'position' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    62
    ^ position
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    63
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
position:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
    "set the value of the instance variable 'position' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    68
    position := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    69
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
type
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
    "return the value of the instance variable 'type' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    74
    ^ type
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    75
!
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
type:something
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
    "set the value of the instance variable 'type' (automatically generated)"
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    80
    type := something.
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    81
! !
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    82
3158
f8c56a311307 Merged 87750af738dc and 72ca7e81fbbf (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3128 2871
diff changeset
    83
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    84
!OtherChange methodsFor:'printing & storing'!
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    85
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    86
printOn:aStream
1441
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    87
    aStream nextPutAll:'OtherChange: '.
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    88
    source notNil ifTrue:[
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    89
        aStream nextPutAll:source.
f14f81edd5c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1416
diff changeset
    90
    ].
1294
3928a6b058cf printing
Claus Gittinger <cg@exept.de>
parents: 910
diff changeset
    91
! !
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    92
3158
f8c56a311307 Merged 87750af738dc and 72ca7e81fbbf (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3128 2871
diff changeset
    93
2871
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    94
!OtherChange methodsFor:'testing'!
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    95
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    96
isOtherChange
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    97
    ^ true
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    98
! !
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
    99
3158
f8c56a311307 Merged 87750af738dc and 72ca7e81fbbf (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3128 2871
diff changeset
   100
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   101
!OtherChange class methodsFor:'documentation'!
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   102
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   103
version
2871
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   104
    ^ '$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
   105
!
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   106
3069
89d2cfee177f - stx_libbasic3
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3067
diff changeset
   107
version_CVS
89d2cfee177f - stx_libbasic3
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3067
diff changeset
   108
    ^ '§Header: /cvs/stx/stx/libbasic3/OtherChange.st,v 1.5 2012-07-31 13:23:08 +0100 vrany Exp §'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   109
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
   110
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   111
version_HG
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   112
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   113
    ^ '$Changeset: <not expanded> $'
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   114
!
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   115
2871
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   116
version_SVN
edd5c5b18492 Merged from SVN
vrany
parents: 1441
diff changeset
   117
    ^ '§Id: OtherChange.st 1942 2012-07-27 14:53:23Z vranyj1 §'
910
ccd7843444d2 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   118
! !
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3078
diff changeset
   119