-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
no need to use readStream on aStream (does not work with Pharo 8)
- Loading branch information
1 parent
f6ec828
commit 6e3e4ae
Showing
21 changed files
with
1,514 additions
and
1,514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
] |
Oops, something went wrong.