tools/JavaVariableDeclarationNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 11 Sep 2013 03:01:48 +0100
branchdevelopment
changeset 2725 258b8c6de530
parent 2641 79395ea8b58f
child 2711 a00302fe5083
permissions -rw-r--r--
STC bug workaround in JavaMethod>>source.

"{ Package: 'stx:libjava/tools' }"

JavaDeclarationNode subclass:#JavaVariableDeclarationNode
	instanceVariableNames:'typej name'
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Java-Parser-AST'
!

!JavaVariableDeclarationNode methodsFor:'accessing'!

type
    ^ typej

    "Created: / 03-08-2013 / 19:27:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

type:something
    typej := something.

    "Created: / 03-08-2013 / 19:27:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !