Grafoscopio notebook importation improved.
This commit is contained in:
parent
2fe11cb753
commit
ae7d315699
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user