Grafoscopio notebook importation improved.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2023-01-22 18:18:03 -05:00
parent 2fe11cb753
commit ae7d315699
1 changed files with 23 additions and 1 deletions

View File

@ -10,7 +10,9 @@ Class {
'links',
'level',
'created',
'nodesInPreorder'
'nodesInPreorder',
'selected',
'edited'
],
#category : #MiniDocs
}
@ -77,6 +79,16 @@ GrafoscopioNode >> created: anObject [
created := anObject
]
{ #category : #accessing }
GrafoscopioNode >> edited [
^ edited
]
{ #category : #accessing }
GrafoscopioNode >> edited: anObject [
edited := anObject
]
{ #category : #accessing }
GrafoscopioNode >> gtTextFor: aView [
<gtView>
@ -142,6 +154,16 @@ GrafoscopioNode >> printOn: aStream [
nextPutAll: '( ', self header, ' )'
]
{ #category : #accessing }
GrafoscopioNode >> selected [
^ selected
]
{ #category : #accessing }
GrafoscopioNode >> selected: anObject [
selected := anObject
]
{ #category : #accessing }
GrafoscopioNode >> tags [
^ tags