Skip to content

Commit 6e3e4ae

Browse files
no need to use readStream on aStream (does not work with Pharo 8)
1 parent f6ec828 commit 6e3e4ae

21 files changed

+1514
-1514
lines changed
Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
Class {
2-
#name : #OPXMIAttribute,
3-
#superclass : #OPXMIInfoItems,
4-
#instVars : [
5-
'xmiName'
6-
],
7-
#category : 'OP-XMI-DOM'
8-
}
9-
10-
{ #category : #testing }
11-
OPXMIAttribute class >> isAbstract [
12-
^ self = OPXMIAttribute
13-
]
14-
15-
{ #category : #testing }
16-
OPXMIAttribute >> isAttribute [
17-
^ true
18-
]
19-
20-
{ #category : #accessing }
21-
OPXMIAttribute >> xmiName [
22-
^ xmiName
23-
]
24-
25-
{ #category : #accessing }
26-
OPXMIAttribute >> xmiName: aString [
27-
xmiName := aString
28-
]
1+
Class {
2+
#name : #OPXMIAttribute,
3+
#superclass : #OPXMIInfoItems,
4+
#instVars : [
5+
'xmiName'
6+
],
7+
#category : 'OP-XMI-DOM'
8+
}
9+
10+
{ #category : #testing }
11+
OPXMIAttribute class >> isAbstract [
12+
^ self = OPXMIAttribute
13+
]
14+
15+
{ #category : #testing }
16+
OPXMIAttribute >> isAttribute [
17+
^ true
18+
]
19+
20+
{ #category : #accessing }
21+
OPXMIAttribute >> xmiName [
22+
^ xmiName
23+
]
24+
25+
{ #category : #accessing }
26+
OPXMIAttribute >> xmiName: aString [
27+
xmiName := aString
28+
]
Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
Class {
2-
#name : #OPXMIElement,
3-
#superclass : #OPXMIInfoItems,
4-
#instVars : [
5-
'xmiName'
6-
],
7-
#category : 'OP-XMI-DOM'
8-
}
9-
10-
{ #category : #testing }
11-
OPXMIElement class >> isAbstract [
12-
^ self = OPXMIElement
13-
]
14-
15-
{ #category : #testing }
16-
OPXMIElement >> isElement [
17-
^ true
18-
]
19-
20-
{ #category : #accessing }
21-
OPXMIElement >> xmiName [
22-
^ xmiName
23-
]
24-
25-
{ #category : #accessing }
26-
OPXMIElement >> xmiName: aString [
27-
xmiName := aString
28-
]
1+
Class {
2+
#name : #OPXMIElement,
3+
#superclass : #OPXMIInfoItems,
4+
#instVars : [
5+
'xmiName'
6+
],
7+
#category : 'OP-XMI-DOM'
8+
}
9+
10+
{ #category : #testing }
11+
OPXMIElement class >> isAbstract [
12+
^ self = OPXMIElement
13+
]
14+
15+
{ #category : #testing }
16+
OPXMIElement >> isElement [
17+
^ true
18+
]
19+
20+
{ #category : #accessing }
21+
OPXMIElement >> xmiName [
22+
^ xmiName
23+
]
24+
25+
{ #category : #accessing }
26+
OPXMIElement >> xmiName: aString [
27+
xmiName := aString
28+
]
Lines changed: 55 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
1-
Class {
2-
#name : #OPXMIInfoItems,
3-
#superclass : #Object,
4-
#category : 'OP-XMI-DOM'
5-
}
6-
7-
{ #category : #testing }
8-
OPXMIInfoItems class >> isAbstract [
9-
^ self = OPXMIInfoItems
10-
]
11-
12-
{ #category : #testing }
13-
OPXMIInfoItems >> isAttribute [
14-
^ false
15-
]
16-
17-
{ #category : #testing }
18-
OPXMIInfoItems >> isElement [
19-
^ false
20-
]
21-
22-
{ #category : #testing }
23-
OPXMIInfoItems >> isObjectElement [
24-
^ false
25-
]
26-
27-
{ #category : #testing }
28-
OPXMIInfoItems >> isReferenceAttribute [
29-
^ false
30-
]
31-
32-
{ #category : #testing }
33-
OPXMIInfoItems >> isReferenceElement [
34-
^ false
35-
]
36-
37-
{ #category : #testing }
38-
OPXMIInfoItems >> isReferenceItem [
39-
^ self isReferenceAttribute | self isReferenceElement
40-
]
41-
42-
{ #category : #testing }
43-
OPXMIInfoItems >> isValueAttribute [
44-
^ false
45-
]
46-
47-
{ #category : #testing }
48-
OPXMIInfoItems >> isValueElement [
49-
^ false
50-
]
51-
52-
{ #category : #testing }
53-
OPXMIInfoItems >> isValueItem [
54-
^ self isValueAttribute | self isValueElement
55-
]
1+
Class {
2+
#name : #OPXMIInfoItems,
3+
#superclass : #Object,
4+
#category : 'OP-XMI-DOM'
5+
}
6+
7+
{ #category : #testing }
8+
OPXMIInfoItems class >> isAbstract [
9+
^ self = OPXMIInfoItems
10+
]
11+
12+
{ #category : #testing }
13+
OPXMIInfoItems >> isAttribute [
14+
^ false
15+
]
16+
17+
{ #category : #testing }
18+
OPXMIInfoItems >> isElement [
19+
^ false
20+
]
21+
22+
{ #category : #testing }
23+
OPXMIInfoItems >> isObjectElement [
24+
^ false
25+
]
26+
27+
{ #category : #testing }
28+
OPXMIInfoItems >> isReferenceAttribute [
29+
^ false
30+
]
31+
32+
{ #category : #testing }
33+
OPXMIInfoItems >> isReferenceElement [
34+
^ false
35+
]
36+
37+
{ #category : #testing }
38+
OPXMIInfoItems >> isReferenceItem [
39+
^ self isReferenceAttribute | self isReferenceElement
40+
]
41+
42+
{ #category : #testing }
43+
OPXMIInfoItems >> isValueAttribute [
44+
^ false
45+
]
46+
47+
{ #category : #testing }
48+
OPXMIInfoItems >> isValueElement [
49+
^ false
50+
]
51+
52+
{ #category : #testing }
53+
OPXMIInfoItems >> isValueItem [
54+
^ self isValueAttribute | self isValueElement
55+
]

0 commit comments

Comments
 (0)