tools/JavaImportDeclarationNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 16 Sep 2013 14:09:52 +0100
branchdevelopment
changeset 2734 f56049613ff3
parent 2731 13f5be2bf83b
permissions -rw-r--r--
Initial support for live code checker / lint. JavaLintService parses the code as you type and displays all errors and other problems. This is done by running compiler in check mode in background. This also removes the necessity for JavaCompilerProblemRegistry.

"{ 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> $'
! !