Interface ImportTree

All Superinterfaces:
Tree
public interface ImportTree
extends Tree

A tree node for an import declaration. For example:

import qualifiedIdentifier ;

   static import qualifiedIdentifier ;

Since:
1.6

Nested Classes

Nested classes/interfaces declared in interface com.sun.source.tree.Tree

Tree.Kind

Methods

Modifier and Type Method Description
Tree getQualifiedIdentifier()

Returns the qualified identifier for the declaration(s) being imported.

boolean isStatic()

Returns true if this is a static import declaration.

Methods declared in interface com.sun.source.tree.Tree

accept, getKind

Methods

isStatic

boolean isStatic()

Returns true if this is a static import declaration.

Returns:
true if this is a static import

getQualifiedIdentifier

Tree getQualifiedIdentifier()

Returns the qualified identifier for the declaration(s) being imported. If this is an import-on-demand declaration, the qualified identifier will end in "*".

Returns:
a qualified identifier, ending in "*" if and only if this is an import-on-demand