ClassRemoveChange.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 29 Jan 2013 14:40:26 +0000
branchjv
changeset 3121 19723298dd2c
parent 3042 48e76977cdc3
child 3128 87750af738dc
permissions -rw-r--r--
Bugfix: reading of Java class extensions methods.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
798
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     1
"
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     2
 COPYRIGHT (c) 1998 by eXept Software AG
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     3
              All Rights Reserved
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     4
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     5
 This software is furnished under a license and may be used
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     6
 only in accordance with the terms of that license and with the
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     8
 be provided or otherwise made available to, or used by, any
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
     9
 other person.  No title to or ownership of the software is
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    10
 hereby transferred.
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    11
"
1162
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    13
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
ClassChange subclass:#ClassRemoveChange
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'System-Changes'
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1234
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    21
Query subclass:#ClassBeingRemovedQuery
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    22
	instanceVariableNames:''
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    23
	classVariableNames:''
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    24
	poolDictionaries:''
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    25
	privateIn:ClassRemoveChange
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    26
!
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    27
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
!ClassRemoveChange class methodsFor:'documentation'!
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
798
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    30
copyright
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    31
"
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    32
 COPYRIGHT (c) 1998 by eXept Software AG
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    33
              All Rights Reserved
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
798
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    35
 This software is furnished under a license and may be used
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    36
 only in accordance with the terms of that license and with the
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    38
 be provided or otherwise made available to, or used by, any
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    39
 other person.  No title to or ownership of the software is
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    40
 hereby transferred.
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    41
"
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 653
diff changeset
    42
1162
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    43
!
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    44
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    45
documentation
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    46
"
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    47
    instances represent a class-has-been-removed change. 
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    48
    They are typically held in a ChangeSet.
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    49
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    50
    [author:]
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    51
        Claus Gittinger
4af27057a3ce comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    52
"
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
! !
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
!ClassRemoveChange methodsFor:'printing'!
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
printOn:aStream
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
    aStream nextPutAll:'Smalltalk removeClass:';
1901
ad3871ce3a45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1234
diff changeset
    59
            nextPutAll:className asString
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
1901
ad3871ce3a45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1234
diff changeset
    61
    "Created: / 16-02-1998 / 14:19:48 / cg"
ad3871ce3a45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1234
diff changeset
    62
    "Modified: / 13-11-2006 / 10:40:17 / cg"
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
! !
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
1234
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    65
!ClassRemoveChange methodsFor:'queries'!
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    66
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    67
isClassRemoveChange
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    68
    ^ true
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    69
! !
2edbb63a70b7 james' package changes
james
parents: 1162
diff changeset
    70
653
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
!ClassRemoveChange class methodsFor:'documentation'!
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
b873bb41ef10 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
version
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    74
    ^ '$Header: ClassRemoveChange.st 1909 2012-03-31 00:14:49Z vranyj1 $'
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    75
!
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    76
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    77
version_HG
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    78
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    79
    ^ '$Changeset: <not expanded> $'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    80
!
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    81
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    82
version_SVN
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    83
    ^ '§Id: ClassRemoveChange.st 1909 2012-03-31 00:14:49Z vranyj1 §'
3012
4f40b8304d54 Added InvalidChange
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3011
diff changeset
    84
! !
3121
19723298dd2c Bugfix: reading of Java class extensions methods.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3042
diff changeset
    85