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

All Implemented Interfaces:
    StatementTree

All Known Implementing Classes:
    JCDoWhileLoop

A tree node for a 'do' statement. For example:
  do
      statement
  while ( expression );
Method from com.sun.source.tree.DoWhileLoopTree Summary:
getCondition,   getStatement
Method from com.sun.source.tree.DoWhileLoopTree Detail:
 public ExpressionTree getCondition()
 public StatementTree getStatement()