Tools__LintService.st
changeset 11416 941e576b6f71
parent 11390 b5af6f49f10f
child 12401 4714b9640528
child 13099 f4f0761ca231
equal deleted inserted replaced
11415:36a9efd23cf6 11416:941e576b6f71
    26 "{ Package: 'stx:libtool' }"
    26 "{ Package: 'stx:libtool' }"
    27 
    27 
    28 "{ NameSpace: Tools }"
    28 "{ NameSpace: Tools }"
    29 
    29 
    30 CodeViewService subclass:#LintService
    30 CodeViewService subclass:#LintService
    31         instanceVariableNames:'ruleHolderFromApp highlighter'
    31 	instanceVariableNames:'ruleHolderFromApp highlighter'
    32         classVariableNames:''
    32 	classVariableNames:''
    33         poolDictionaries:''
    33 	poolDictionaries:''
    34         category:'Interface-Lint'
    34 	category:'Interface-Lint'
    35 !
    35 !
    36 
    36 
    37 !LintService class methodsFor:'documentation'!
    37 !LintService class methodsFor:'documentation'!
    38 
    38 
    39 copyright
    39 copyright
   182         "/ bad design; better idea would be to pass the lintRuleHolder back from the
   182         "/ bad design; better idea would be to pass the lintRuleHolder back from the
   183         "/ application to me explicitely (in a postBuild method for some ruleCanvas of the app)
   183         "/ application to me explicitely (in a postBuild method for some ruleCanvas of the app)
   184         (app respondsTo: #selectedLintRules) ifTrue:[
   184         (app respondsTo: #selectedLintRules) ifTrue:[
   185             self ruleHolderFromApp: app selectedLintRules
   185             self ruleHolderFromApp: app selectedLintRules
   186         ] ifFalse:[
   186         ] ifFalse:[
   187             Transcript showCR:'oops - LintService''s app does not provide a lintRuleHolder'
   187             self breakPoint:#jv.
       
   188             "/ Transcript showCR:'LintService [info]: app does not provide a lintRuleHolder'
   188         ]
   189         ]
   189     ].
   190     ].
   190 
   191 
   191     "Created: / 08-03-2012 / 01:16:38 / cg"
   192     "Created: / 08-03-2012 / 01:16:38 / cg"
   192 !
   193 !
   201 ! !
   202 ! !
   202 
   203 
   203 !LintService class methodsFor:'documentation'!
   204 !LintService class methodsFor:'documentation'!
   204 
   205 
   205 version
   206 version
   206     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.5 2012-03-08 00:25:59 cg Exp $'
   207     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.6 2012-03-12 18:20:05 cg Exp $'
   207 !
   208 !
   208 
   209 
   209 version_CVS
   210 version_CVS
   210     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.5 2012-03-08 00:25:59 cg Exp $'
   211     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintService.st,v 1.6 2012-03-12 18:20:05 cg Exp $'
   211 ! !
   212 ! !