Compiler Tree API

com.sun.source.tree
Interface DoWhileLoopTree

All Superinterfaces:
StatementTree, Tree

public interface DoWhileLoopTree
extends StatementTree

A tree node for a 'do' statement. For example:

   do
       statement
   while ( expression );
 

Since:
1.6
See Also:
"The Java Language Specification, 3rd ed, section 14.13"

Nested Class Summary
 
Nested classes/interfaces inherited from interface com.sun.source.tree.Tree
Tree.Kind
 
Method Summary
 ExpressionTree getCondition()
           
 StatementTree getStatement()
           
 
Methods inherited from interface com.sun.source.tree.Tree
accept, getKind
 

Method Detail

getCondition

ExpressionTree getCondition()

getStatement

StatementTree getStatement()

Compiler Tree API

Report a bug or request a feature.
Copyright 2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.