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

All Implemented Interfaces:
    StatementTree

All Known Implementing Classes:
    JCAssert

A tree node for an 'assert' statement. For example:
  assert condition ;

  assert condition : detail ;
Method from com.sun.source.tree.AssertTree Summary:
getCondition,   getDetail
Method from com.sun.source.tree.AssertTree Detail:
 public ExpressionTree getCondition()
 public ExpressionTree getDetail()