tools/JavaImportDeclarationNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 03 Oct 2013 10:33:47 +0200
changeset 2762 5597a2c77cba
parent 2678 c865275e48a7
child 2731 13f5be2bf83b
permissions -rw-r--r--
Added GroovySourceHighlighter

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

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


!JavaImportDeclarationNode methodsFor:'accessing'!

name
    ^ name
!

name:something
    name := something.
! !

!JavaImportDeclarationNode 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:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!JavaImportDeclarationNode class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libjava/tools/JavaImportDeclarationNode.st,v 1.1 2013-09-06 00:45:26 vrany Exp $'
!

version_HG

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