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