SmallSenseMethodInfo.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 07 Aug 2013 01:59:17 +0100
changeset 57 7e9a47c8ddde
parent 32 658f47bc231e
permissions -rw-r--r--
Fix in SmallSenseService: do not try to draw annotations for non-smalltalk code.

"{ Package: 'jv:smallsense' }"

SmallSenseInfo subclass:#SmallSenseMethodInfo
	instanceVariableNames:'classInfo selector returnType'
	classVariableNames:''
	poolDictionaries:''
	category:'SmallSense-Model'
!


!SmallSenseMethodInfo class methodsFor:'instance creation'!

forClassInfo: clsInfo selector: sel

    ^self new
        setClassInfo: clsInfo selector: sel;
        yourself

    "Created: / 27-11-2011 / 16:37:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SmallSenseMethodInfo methodsFor:'initialization'!

setManager: mgr classInfo: clsInfo selector: sel

    manager := mgr.
    classInfo := clsInfo.
    selector := sel.

    "Created: / 29-11-2011 / 15:58:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!SmallSenseMethodInfo class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
!

version_SVN
    ^ '$Id: SmallSenseMethodInfo.st 7834 2011-11-29 19:25:06Z vranyj1 $'
! !