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

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

JavaParseNode subclass:#JavaPackageDeclarationNode
	instanceVariableNames:'name'
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Java-Parser-AST'
!


!JavaPackageDeclarationNode methodsFor:'accessing'!

name
    ^ name
!

name:something
    name := something.
! !

!JavaPackageDeclarationNode methodsFor:'enumeration'!

childNamesAndValuesDo:aBlock
    "Enumerates all direct children and evaluates a block
     with its name (usually instVar name) and the node itself"

    "Modified: / 25-08-2013 / 10:33:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!JavaPackageDeclarationNode class methodsFor:'documentation'!

version_HG

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