Tools__LintRuleDetail.st
branchjv
changeset 12401 4714b9640528
parent 12205 f210b6224ef0
parent 11314 2f70adb99ceb
child 12431 9f0c59c742d5
equal deleted inserted replaced
12330:235b77901045 12401:4714b9640528
    62  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    62  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    63  OTHER DEALINGS IN THE SOFTWARE.
    63  OTHER DEALINGS IN THE SOFTWARE.
    64 "
    64 "
    65 ! !
    65 ! !
    66 
    66 
       
    67 
    67 !LintRuleDetail class methodsFor:'help specs'!
    68 !LintRuleDetail class methodsFor:'help specs'!
    68 
    69 
    69 flyByHelpSpec
    70 flyByHelpSpec
    70     "This resource specification was automatically generated
    71     "This resource specification was automatically generated
    71      by the UIHelpTool of ST/X."
    72      by the UIHelpTool of ST/X."
    86 
    87 
    87 )
    88 )
    88 
    89 
    89     "Created: / 07-09-2011 / 04:08:11 / cg"
    90     "Created: / 07-09-2011 / 04:08:11 / cg"
    90 ! !
    91 ! !
       
    92 
    91 
    93 
    92 !LintRuleDetail class methodsFor:'interface specs'!
    94 !LintRuleDetail class methodsFor:'interface specs'!
    93 
    95 
    94 windowSpec
    96 windowSpec
    95     "This resource specification was automatically generated
    97     "This resource specification was automatically generated
   176          
   178          
   177         )
   179         )
   178       )
   180       )
   179 ! !
   181 ! !
   180 
   182 
       
   183 
   181 !LintRuleDetail class methodsFor:'plugIn spec'!
   184 !LintRuleDetail class methodsFor:'plugIn spec'!
   182 
   185 
   183 aspectSelectors
   186 aspectSelectors
   184     "This resource specification was automatically generated
   187     "This resource specification was automatically generated
   185      by the UIPainter of ST/X."
   188      by the UIPainter of ST/X."
   196         #ruleRationaleAspect
   199         #ruleRationaleAspect
   197       ).
   200       ).
   198 
   201 
   199     "Modified: / 01-03-2012 / 16:31:04 / cg"
   202     "Modified: / 01-03-2012 / 16:31:04 / cg"
   200 ! !
   203 ! !
       
   204 
   201 
   205 
   202 !LintRuleDetail methodsFor:'actions'!
   206 !LintRuleDetail methodsFor:'actions'!
   203 
   207 
   204 browseLintRule
   208 browseLintRule
   205     |rule ruleClass sel|
   209     |rule ruleClass sel|
   213     UserPreferences current systemBrowserClass
   217     UserPreferences current systemBrowserClass
   214        openInClass:ruleClass selector:sel
   218        openInClass:ruleClass selector:sel
   215 
   219 
   216     "Created: / 07-09-2011 / 04:09:38 / cg"
   220     "Created: / 07-09-2011 / 04:09:38 / cg"
   217 ! !
   221 ! !
       
   222 
   218 
   223 
   219 !LintRuleDetail methodsFor:'aspects'!
   224 !LintRuleDetail methodsFor:'aspects'!
   220 
   225 
   221 rationaleVisibleHolder
   226 rationaleVisibleHolder
   222     "return/create the 'rationaleVisibleHolder' value holder (automatically generated)"
   227     "return/create the 'rationaleVisibleHolder' value holder (automatically generated)"
   319 
   324 
   320     "Modified: / 05-02-2010 / 12:51:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   325     "Modified: / 05-02-2010 / 12:51:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   321     "Modified: / 01-03-2012 / 15:29:16 / cg"
   326     "Modified: / 01-03-2012 / 15:29:16 / cg"
   322 ! !
   327 ! !
   323 
   328 
       
   329 
   324 !LintRuleDetail methodsFor:'change & update'!
   330 !LintRuleDetail methodsFor:'change & update'!
   325 
   331 
   326 update:something with:aParameter from:changedObject
   332 update:something with:aParameter from:changedObject
   327     "Invoked when an object that I depend upon sends a change notification."
   333     "Invoked when an object that I depend upon sends a change notification."
   328 
   334 
   361         ifFalse:[self hide].
   367         ifFalse:[self hide].
   362 
   368 
   363     "Created: / 04-08-2011 / 16:39:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   369     "Created: / 04-08-2011 / 16:39:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   364     "Modified: / 04-09-2011 / 20:18:48 / cg"
   370     "Modified: / 04-09-2011 / 20:18:48 / cg"
   365 ! !
   371 ! !
       
   372 
   366 
   373 
   367 !LintRuleDetail methodsFor:'initialization'!
   374 !LintRuleDetail methodsFor:'initialization'!
   368 
   375 
   369 setupHTMLView:aView
   376 setupHTMLView:aView
   370     rationalView := aView.
   377     rationalView := aView.
   372         leftMargin:20;
   379         leftMargin:20;
   373         topMargin:5.
   380         topMargin:5.
   374 
   381 
   375     "Created: / 04-08-2011 / 18:00:36 / cg"
   382     "Created: / 04-08-2011 / 18:00:36 / cg"
   376 ! !
   383 ! !
       
   384 
   377 
   385 
   378 !LintRuleDetail methodsFor:'private'!
   386 !LintRuleDetail methodsFor:'private'!
   379 
   387 
   380 heightWhenNotShowingRationale
   388 heightWhenNotShowingRationale
   381     ^ 30
   389     ^ 30
   434 
   442 
   435     "Created: / 11-03-2010 / 09:51:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   443     "Created: / 11-03-2010 / 09:51:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   436     "Modified: / 01-03-2012 / 10:35:51 / cg"
   444     "Modified: / 01-03-2012 / 10:35:51 / cg"
   437 ! !
   445 ! !
   438 
   446 
       
   447 
   439 !LintRuleDetail class methodsFor:'documentation'!
   448 !LintRuleDetail class methodsFor:'documentation'!
   440 
   449 
   441 version
   450 version
   442     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintRuleDetail.st,v 1.13 2012/03/01 19:59:38 cg Exp $'
   451     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintRuleDetail.st,v 1.13 2012-03-01 19:59:38 cg Exp $'
   443 !
   452 !
   444 
   453 
   445 version_CVS
   454 version_CVS
   446     ^ '§Header: /cvs/stx/stx/libtool/Tools__LintRuleDetail.st,v 1.13 2012/03/01 19:59:38 cg Exp §'
   455     ^ '$Header: /cvs/stx/stx/libtool/Tools__LintRuleDetail.st,v 1.13 2012-03-01 19:59:38 cg Exp $'
   447 !
   456 !
   448 
   457 
   449 version_SVN
   458 version_SVN
   450     ^ '$Id: Tools__LintRuleDetail.st 7952 2012-03-21 17:50:14Z vranyj1 $'
   459     ^ '§Id: Tools__LintRuleDetail.st 7617 2010-08-25 12:56:19Z vranyj1 §'
   451 ! !
   460 ! !
       
   461