tools/JavaMethodDeclarationNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 24 Aug 2013 17:11:15 +0100
branchdevelopment
changeset 2667 5daa560d20d8
child 2711 a00302fe5083
child 2722 1527fdb0c92f
permissions -rw-r--r--
More work on Java code partitioner.

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

JavaMethodLikeDeclarationNode subclass:#JavaMethodDeclarationNode
	instanceVariableNames:'name returnType'
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Java-Parser-AST'
!

!JavaMethodDeclarationNode methodsFor:'accessing'!

name
    ^ name
!

name:aString
    name := aString.
!

returnType
    ^ returnType
!

returnType:something
    returnType := something.
! !