|
@@ -16,10 +16,20 @@ actionBlock: aBlock
|
|
Object subclass: #HLAnnouncement
|
|
Object subclass: #HLAnnouncement
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLAnnouncement commentStamp!
|
|
|
|
+I am the root of the announcement class hierarchy used in the Helios UI.!
|
|
|
|
+
|
|
|
|
+!HLAnnouncement class methodsFor: 'helios'!
|
|
|
|
+
|
|
|
|
+heliosClass
|
|
|
|
+ ^ 'announcement'
|
|
|
|
+! !
|
|
|
|
|
|
HLAnnouncement subclass: #HLCodeHandled
|
|
HLAnnouncement subclass: #HLCodeHandled
|
|
instanceVariableNames: 'code'
|
|
instanceVariableNames: 'code'
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLCodeHandled commentStamp!
|
|
|
|
+I am the root class of announcements emitted by `HLCodeWidget`s!
|
|
|
|
|
|
!HLCodeHandled methodsFor: 'accessing'!
|
|
!HLCodeHandled methodsFor: 'accessing'!
|
|
|
|
|
|
@@ -45,18 +55,26 @@ on: aCodeModel
|
|
HLCodeHandled subclass: #HLDoItExecuted
|
|
HLCodeHandled subclass: #HLDoItExecuted
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLDoItExecuted commentStamp!
|
|
|
|
+I am emitted by a `HLCodeWidget` after a DoIt has been executed.!
|
|
|
|
|
|
HLCodeHandled subclass: #HLDoItRequested
|
|
HLCodeHandled subclass: #HLDoItRequested
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLDoItRequested commentStamp!
|
|
|
|
+I am emitted by a `HLCodeWidget` before a DoIt is executed.!
|
|
|
|
|
|
HLCodeHandled subclass: #HLInspectItRequested
|
|
HLCodeHandled subclass: #HLInspectItRequested
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLInspectItRequested commentStamp!
|
|
|
|
+I am emitted by a `HLCodeWidget` before an object is inspected.!
|
|
|
|
|
|
HLCodeHandled subclass: #HLPrintItRequested
|
|
HLCodeHandled subclass: #HLPrintItRequested
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Helios-Announcements'!
|
|
package: 'Helios-Announcements'!
|
|
|
|
+!HLPrintItRequested commentStamp!
|
|
|
|
+I am emitted by a `HLCodeWidget` before an object is printed.!
|
|
|
|
|
|
HLAnnouncement subclass: #HLDebuggerContextSelected
|
|
HLAnnouncement subclass: #HLDebuggerContextSelected
|
|
instanceVariableNames: 'context'
|
|
instanceVariableNames: 'context'
|