BreakpointDescription.st
changeset 3478 10e2a710037f
parent 3392 8ce7c295de8c
child 3481 a90ddf2e118d
--- a/BreakpointDescription.st	Tue Jun 10 17:21:08 2014 +0200
+++ b/BreakpointDescription.st	Tue Jun 10 17:40:49 2014 +0200
@@ -1,7 +1,7 @@
 "{ Package: 'stx:libcomp' }"
 
 Object subclass:#BreakpointDescription
-	instanceVariableNames:'state condition'
+	instanceVariableNames:'state condition icon'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'System-Compiler-Debugging'
@@ -54,12 +54,7 @@
 initialize
     "Invoked when a new instance is created."
 
-    "/ please change as required (and remove this comment)
-    "/ method := nil.
-    "/ position := nil.
-    "/ condition := nil.
     state := #enabled
-    "/ line := nil.
 
     "/ super initialize.   -- commented since inherited method does nothing
 
@@ -146,10 +141,10 @@
 !BreakpointDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointDescription.st,v 1.10 2014-02-28 14:23:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointDescription.st,v 1.11 2014-06-10 15:40:49 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointDescription.st,v 1.10 2014-02-28 14:23:17 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/BreakpointDescription.st,v 1.11 2014-06-10 15:40:49 cg Exp $'
 ! !