-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #510 from jordanmontt/adding-inspector-transmissio…
…n-node Adding inspector transmission node
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
src/NewTools-Inspector/StInspectorTransmissionNode.class.st
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
" | ||
I am an inspector node that allows the user to specify a custom transmission. I am made to be used inside the Inspector. The user can specify the `transmissionBlock:` | ||
" | ||
Class { | ||
#name : #StInspectorTransmissionNode, | ||
#superclass : #StInspectorNode, | ||
#instVars : [ | ||
'transmissionBlock' | ||
], | ||
#category : #'NewTools-Inspector-Model' | ||
} | ||
|
||
{ #category : #'instance initialization' } | ||
StInspectorTransmissionNode class >> hostObject: anObject transmissionBlock: aFullBlockClosure [ | ||
|
||
^ self new | ||
hostObject: anObject; | ||
transmissionBlock: aFullBlockClosure; | ||
yourself | ||
] | ||
|
||
{ #category : #accessing } | ||
StInspectorTransmissionNode >> key [ | ||
|
||
^ self hostObject | ||
] | ||
|
||
{ #category : #accessing } | ||
StInspectorTransmissionNode >> rawValue [ | ||
|
||
^ transmissionBlock value: hostObject | ||
] | ||
|
||
{ #category : #accessing } | ||
StInspectorTransmissionNode >> transmissionBlock: aBlock [ | ||
|
||
transmissionBlock := aBlock | ||
] |