|
Class: MethodRemoveChange
Object
|
+--Change
|
+--ClassChange
|
+--MethodChange
|
+--MethodRemoveChange
- Package:
- stx:libbasic3
- Category:
- System-Changes
- Version:
- rev:
1.17
date: 2024/02/08 16:46:51
- user: matilk
- file: MethodRemoveChange.st directory: libbasic3
- module: stx stc-classLibrary: libbasic3
instances represent a method-has-been-removed change.
They are typically held in a ChangeSet.
copyrightCOPYRIGHT (c) 1998 by eXept Software AG
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
instance creation
-
class: cls selector: selector
-
-
className: clsName selector: sel
-
-
nameSpaceName: nspName className: clsName selector: sel
-
accessing
-
class: cls selector: sel
-
-
className: clsName selector: sel
-
-
delta
-
obsolete: please use deltaDetail
-
deltaDetail
-
Returns a delta to the current state as a ChangeDelta object
-
nameSpaceName: nspName className: clsName selector: sel
-
-
package
-
-
type: typeSymbol
-
applying
-
apply
-
(comment from inherited method)
apply the change
printing
-
printOn: aStream
-
(comment from inherited method)
append a user printed representation of the receiver to aStream.
The format is suitable for a human - not meant to be read back.
testing
-
isMethodCodeChange
-
true if this is a method's code change (not package, category etc.)
-
isMethodRemoveChange
-
|