Skip to content

Commit

Permalink
no need to use readStream on aStream (does not work with Pharo 8)
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Feb 6, 2020
1 parent f6ec828 commit 6e3e4ae
Show file tree
Hide file tree
Showing 21 changed files with 1,514 additions and 1,514 deletions.
56 changes: 28 additions & 28 deletions repository/OP-XMI/OPXMIAttribute.class.st
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
Class {
#name : #OPXMIAttribute,
#superclass : #OPXMIInfoItems,
#instVars : [
'xmiName'
],
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIAttribute class >> isAbstract [
^ self = OPXMIAttribute
]

{ #category : #testing }
OPXMIAttribute >> isAttribute [
^ true
]

{ #category : #accessing }
OPXMIAttribute >> xmiName [
^ xmiName
]

{ #category : #accessing }
OPXMIAttribute >> xmiName: aString [
xmiName := aString
]
Class {
#name : #OPXMIAttribute,
#superclass : #OPXMIInfoItems,
#instVars : [
'xmiName'
],
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIAttribute class >> isAbstract [
^ self = OPXMIAttribute
]

{ #category : #testing }
OPXMIAttribute >> isAttribute [
^ true
]

{ #category : #accessing }
OPXMIAttribute >> xmiName [
^ xmiName
]

{ #category : #accessing }
OPXMIAttribute >> xmiName: aString [
xmiName := aString
]
56 changes: 28 additions & 28 deletions repository/OP-XMI/OPXMIElement.class.st
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
Class {
#name : #OPXMIElement,
#superclass : #OPXMIInfoItems,
#instVars : [
'xmiName'
],
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIElement class >> isAbstract [
^ self = OPXMIElement
]

{ #category : #testing }
OPXMIElement >> isElement [
^ true
]

{ #category : #accessing }
OPXMIElement >> xmiName [
^ xmiName
]

{ #category : #accessing }
OPXMIElement >> xmiName: aString [
xmiName := aString
]
Class {
#name : #OPXMIElement,
#superclass : #OPXMIInfoItems,
#instVars : [
'xmiName'
],
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIElement class >> isAbstract [
^ self = OPXMIElement
]

{ #category : #testing }
OPXMIElement >> isElement [
^ true
]

{ #category : #accessing }
OPXMIElement >> xmiName [
^ xmiName
]

{ #category : #accessing }
OPXMIElement >> xmiName: aString [
xmiName := aString
]
110 changes: 55 additions & 55 deletions repository/OP-XMI/OPXMIInfoItems.class.st
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
Class {
#name : #OPXMIInfoItems,
#superclass : #Object,
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIInfoItems class >> isAbstract [
^ self = OPXMIInfoItems
]

{ #category : #testing }
OPXMIInfoItems >> isAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isObjectElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceItem [
^ self isReferenceAttribute | self isReferenceElement
]

{ #category : #testing }
OPXMIInfoItems >> isValueAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isValueElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isValueItem [
^ self isValueAttribute | self isValueElement
]
Class {
#name : #OPXMIInfoItems,
#superclass : #Object,
#category : 'OP-XMI-DOM'
}

{ #category : #testing }
OPXMIInfoItems class >> isAbstract [
^ self = OPXMIInfoItems
]

{ #category : #testing }
OPXMIInfoItems >> isAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isObjectElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isReferenceItem [
^ self isReferenceAttribute | self isReferenceElement
]

{ #category : #testing }
OPXMIInfoItems >> isValueAttribute [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isValueElement [
^ false
]

{ #category : #testing }
OPXMIInfoItems >> isValueItem [
^ self isValueAttribute | self isValueElement
]
Loading

0 comments on commit 6e3e4ae

Please sign in to comment.