ClassPrimitiveDefinitionsChange.st
author Claus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 21:57:35 +0200
changeset 957 54dade11e57f
parent 801 b84b61eaa2f6
child 962 3821ab69b939
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
101
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
	      All Rights Reserved
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
957
54dade11e57f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
54dade11e57f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
    14
783
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    15
ClassPrimitiveChange subclass:#ClassPrimitiveDefinitionsChange
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    16
	instanceVariableNames:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    17
	classVariableNames:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    18
	poolDictionaries:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    19
	category:'System-Changes'
101
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!ClassPrimitiveDefinitionsChange class methodsFor:'documentation'!
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
copyright
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
 COPYRIGHT (c) 1995 by Claus Gittinger
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
	      All Rights Reserved
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 This software is furnished under a license and may be used
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 only in accordance with the terms of that license and with the
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 be provided or otherwise made available to, or used by, any
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 other person.  No title to or ownership of the software is
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
 hereby transferred.
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
!
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
documentation
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    instances represent a classes primitive definition-changes. 
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    They are typically held in a ChangeSet.
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    42
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    43
    [author:]
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 103
diff changeset
    44
        Claus Gittinger
101
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
! !
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    48
!ClassPrimitiveDefinitionsChange methodsFor:'comparing'!
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    49
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    50
isForSameAs:changeB
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    51
    "return true, if the given change represents a change for the same
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    52
     thingy as the receiver (i.e. same method, same definition etc.)."
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    53
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    54
    changeB isPrimitiveDefinitionsChange ifFalse:[^ false].   
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    55
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    56
    ^ className = changeB className
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    57
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    58
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    59
! !
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 783
diff changeset
    60
103
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    61
!ClassPrimitiveDefinitionsChange methodsFor:'printing'!
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    62
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    63
printOn:aStream
801
b84b61eaa2f6 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    64
    "append a user printed representation of the receiver to aStream.
b84b61eaa2f6 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    65
     The format is suitable for a human - not meant to be read back."
b84b61eaa2f6 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
    66
103
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    67
    aStream nextPutAll:className; nextPutAll:' primitiveDefinitions:'
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    68
! !
487c1447b3d8 printing fixed (req'd for changeSetBrowser)
Claus Gittinger <cg@exept.de>
parents: 101
diff changeset
    69
783
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    70
!ClassPrimitiveDefinitionsChange methodsFor:'queries'!
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    71
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    72
isPrimitiveDefinitionsChange
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    73
    ^ true
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    74
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    75
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    76
! !
90ffa6f0a86b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    77
101
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
!ClassPrimitiveDefinitionsChange class methodsFor:'documentation'!
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
version
957
54dade11e57f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
    81
    ^ '$Header: /cvs/stx/stx/libbasic3/ClassPrimitiveDefinitionsChange.st,v 1.8 2000-08-22 19:57:32 cg Exp $'
101
9a1c22e807e0 more changeSet stuff
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
! !