Home » openjdk-7 » com.sun.source » tree » [javadoc | source]
com.sun.source.tree
public interface: WhileLoopTree [javadoc | source]

All Implemented Interfaces:
    StatementTree

All Known Implementing Classes:
    JCWhileLoop

A tree node for a 'while' loop statement. For example:
  while ( condition )
    statement
Method from com.sun.source.tree.WhileLoopTree Summary:
getCondition,   getStatement
Method from com.sun.source.tree.WhileLoopTree Detail:
 public ExpressionTree getCondition()
 public StatementTree getStatement()