MethodChangeNotificationParameter.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 13 Jul 2023 16:46:06 +0100
branchjv
changeset 4580 12647a4bdf1d
parent 3838 474d8ec95b33
permissions -rw-r--r--
Add more simple rewrites to `PharoSourceExporter`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     1
"
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
4580
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
     3
 COPYRIGHT (c) 2022 LabWare
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     4
              All Rights Reserved
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     5
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     6
 This software is furnished under a license and may be used
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     7
 only in accordance with the terms of that license and with the
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
     9
 be provided or otherwise made available to, or used by, any
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    10
 other person.  No title to or ownership of the software is
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    11
 hereby transferred.
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    12
"
2266
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
4580
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    15
"{ NameSpace: Smalltalk }"
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    16
2266
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
ChangeNotificationParameter variableSubclass:#MethodChangeNotificationParameter
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	instanceVariableNames:''
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	classVariableNames:''
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	poolDictionaries:''
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
	category:'System-Changes-Notifications'
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    24
!MethodChangeNotificationParameter class methodsFor:'documentation'!
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    25
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    26
copyright
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    27
"
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    28
 COPYRIGHT (c) 2006 by eXept Software AG
4580
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    29
 COPYRIGHT (c) 2022 LabWare
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    30
              All Rights Reserved
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    31
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    32
 This software is furnished under a license and may be used
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    33
 only in accordance with the terms of that license and with the
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    35
 be provided or otherwise made available to, or used by, any
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    36
 other person.  No title to or ownership of the software is
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    37
 hereby transferred.
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    38
"
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    39
! !
2266
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
!MethodChangeNotificationParameter class methodsFor:'instance creation'!
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
changeClass:changeClassArg changeSelector:changeSelectorArg
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
    ^ (self new:2)
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
        changeClass:changeClassArg changeSelector:changeSelectorArg
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
!MethodChangeNotificationParameter methodsFor:'accessing'!
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
changeClass
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    ^ self at:1
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
!
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
changeMethod
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
    ^ self at:2
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
! !
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
!MethodChangeNotificationParameter class methodsFor:'documentation'!
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
version_CVS
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    61
    ^ '$Header: /cvs/stx/stx/libbasic3/MethodChangeNotificationParameter.st,v 1.2 2014-02-05 17:51:44 cg Exp $'
4580
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    62
!
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    63
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    64
version_HG
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    65
12647a4bdf1d Add more simple rewrites to `PharoSourceExporter`
Jan Vrany <jan.vrany@labware.com>
parents: 3838
diff changeset
    66
    ^ '$Changeset: <not expanded> $'
2266
75abf5b4c643 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
! !
3439
fa33c1abca58 merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2266
diff changeset
    68