initial checkin
authorClaus Gittinger <cg@exept.de>
Mon, 23 Oct 2006 10:58:01 +0200
changeset 7446 008ffff0126e
parent 7445 4cbf885e5bb1
child 7447 744eea8ff31c
initial checkin
Tools__CompilerWarningToDoListEntry.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Tools__CompilerWarningToDoListEntry.st	Mon Oct 23 10:58:01 2006 +0200
@@ -0,0 +1,144 @@
+"{ Package: 'stx:libtool' }"
+
+"{ NameSpace: Tools }"
+
+ToDoListEntry subclass:#CompilerWarningToDoListEntry
+	instanceVariableNames:'checkAction className class selector equalityParameter'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Interface-Smalltalk-ToDo'
+!
+
+
+!CompilerWarningToDoListEntry methodsFor:'accessing'!
+
+className
+    ^ className
+
+    "Created: / 22-10-2006 / 01:39:43 / cg"
+!
+
+className:classNameArg selector:selectorArg checkAction:checkActionArg equalityParameter:equalityParameterArg 
+    checkAction := checkActionArg.
+    className := classNameArg.
+    selector := selectorArg.
+    equalityParameter := equalityParameterArg.
+
+    "Created: / 22-10-2006 / 01:38:26 / cg"
+!
+
+equalityParameter
+    ^ equalityParameter
+
+    "Created: / 21-10-2006 / 21:57:01 / cg"
+!
+
+methodOrClassName
+    selector isNil ifTrue:[^ className ].
+    ^ className,' ',selector
+
+    "Created: / 22-10-2006 / 11:05:21 / cg"
+!
+
+problemClass
+    ^ Smalltalk classNamed:className
+
+    "Created: / 21-10-2006 / 21:50:38 / cg"
+    "Modified: / 22-10-2006 / 01:39:39 / cg"
+!
+
+problemClassName
+    ^ className
+
+    "Created: / 22-10-2006 / 01:40:11 / cg"
+!
+
+problemMethod
+    |cls|
+
+    selector isNil ifTrue:[^ nil].
+
+    cls := self problemClass.
+    cls isNil ifTrue:[^ nil].
+
+    ^ cls compiledMethodAt:selector
+
+    "Created: / 22-10-2006 / 02:42:39 / cg"
+!
+
+problemSelector
+    ^ selector
+
+    "Created: / 21-10-2006 / 21:50:58 / cg"
+!
+
+update:something with:aParameter from:changedObject
+    self revalidate.
+
+    "Created: / 21-10-2006 / 21:28:35 / cg"
+! !
+
+!CompilerWarningToDoListEntry methodsFor:'duplicate detection'!
+
+sameAs:anotherEntry
+    ^ anotherEntry sameAsCompilerWarningToDoListEntry:self
+
+    "Created: / 21-10-2006 / 21:38:15 / cg"
+!
+
+sameAsCompilerWarningToDoListEntry:anotherEntry
+    anotherEntry problemClassName = className ifFalse:[^ false].
+    anotherEntry problemSelector = selector ifFalse:[^ false].
+    anotherEntry equalityParameter = equalityParameter ifFalse:[^ false].
+    ^ true
+
+    "Created: / 21-10-2006 / 21:41:57 / cg"
+    "Modified: / 22-10-2006 / 01:40:03 / cg"
+! !
+
+!CompilerWarningToDoListEntry methodsFor:'misc'!
+
+browse
+    UserPreferences browserClass 
+        openInClass:(self problemClass) selector:selector
+
+    "Created: / 22-10-2006 / 01:38:11 / cg"
+! !
+
+!CompilerWarningToDoListEntry methodsFor:'validation'!
+
+checkIfClassIsStillValid
+    className notNil ifTrue:[
+        (Smalltalk classNamed:className) isNil ifTrue:[^ false].
+    ].
+    ^ true
+
+    "Created: / 21-10-2006 / 21:58:26 / cg"
+    "Modified: / 22-10-2006 / 01:41:53 / cg"
+!
+
+checkIfSelectorIsStillValid
+    selector notNil ifTrue:[
+        (self problemClass compiledMethodAt:selector) isNil ifTrue:[^ false].
+    ].
+    ^ true
+
+    "Created: / 21-10-2006 / 21:58:44 / cg"
+    "Modified: / 22-10-2006 / 01:40:40 / cg"
+!
+
+checkIfStillValid
+    self checkIfClassIsStillValid ifFalse:[^ false].
+    self checkIfSelectorIsStillValid ifFalse:[^ false].
+
+    ^ (checkAction value:self)
+
+    "Created: / 21-10-2006 / 21:31:27 / cg"
+    "Modified: / 21-10-2006 / 23:10:33 / cg"
+! !
+
+!CompilerWarningToDoListEntry class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libtool/Tools__CompilerWarningToDoListEntry.st,v 1.1 2006-10-23 08:58:01 cg Exp $'
+! !