MethodCategoryChangeNotificationParameter.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Aug 2018 10:11:25 +0200
changeset 4346 6604af2f1554
parent 3460 8f22b8ff5cdb
child 3838 474d8ec95b33
permissions -rw-r--r--
#OTHER by cg class: FileBasedSourceCodeManager class removed: #version_FileRepository
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3460
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     1
"
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     3
              All Rights Reserved
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     4
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     5
 This software is furnished under a license and may be used
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     6
 only in accordance with the terms of that license and with the
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     8
 be provided or otherwise made available to, or used by, any
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
     9
 other person.  No title to or ownership of the software is
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    10
 hereby transferred.
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    11
"
2268
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
MethodChangeNotificationParameter variableSubclass:#MethodCategoryChangeNotificationParameter
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Changes-Notifications'
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
3460
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    21
!MethodCategoryChangeNotificationParameter class methodsFor:'documentation'!
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    22
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    23
copyright
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    24
"
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    26
              All Rights Reserved
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    27
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    28
 This software is furnished under a license and may be used
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    29
 only in accordance with the terms of that license and with the
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    31
 be provided or otherwise made available to, or used by, any
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    32
 other person.  No title to or ownership of the software is
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    33
 hereby transferred.
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    34
"
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    35
! !
2268
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
!MethodCategoryChangeNotificationParameter class methodsFor:'instance creation'!
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    ^ (self new:3)
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
        changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
! !
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
!MethodCategoryChangeNotificationParameter methodsFor:'accessing'!
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
    self at:1 put:changeClassArg.
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    self at:2 put:changeMethodArg.
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    self at:3 put:oldCategoryArg.
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
!
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
oldCategory
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    ^ self at:3
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
! !
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
!MethodCategoryChangeNotificationParameter class methodsFor:'documentation'!
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
version_CVS
3460
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    59
    ^ '$Header: /cvs/stx/stx/libbasic3/MethodCategoryChangeNotificationParameter.st,v 1.2 2014-02-05 17:52:21 cg Exp $'
2268
04589c78a218 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
! !
3460
8f22b8ff5cdb merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
    61