Uses of Interface
org.inxar.jenesis.Statement

Packages that use Statement
com.inxar.jenesis Classes which implement Java language elements. 
org.inxar.jenesis Interfaces which abstract Java language elements (read the desciption below). 
 

Uses of Statement in com.inxar.jenesis
 

Classes in com.inxar.jenesis that implement Statement
 class MStatement
          Standard Statement implementations.
 

Uses of Statement in org.inxar.jenesis
 

Subinterfaces of Statement in org.inxar.jenesis
 interface Break
          Statement subinterface for the break keyword.
 interface Case
          Statement subinterface for the case construct in a switch.
 interface ConditionalStatement
          Statement subinterface for the conditional statements (statements whose execution depends on the truthful evaluation of a predicate).
 interface Continue
          Statement subinterface for the continue keyword.
 interface Default
          The default case clause the optional final case of a switch statement.
 interface DoWhile
          Statement subinterface for the do while construct.
 interface Else
          Statement subinterface for the else construct in an if.
 interface ElseIf
          Statement subinterface for the else if construct in an if.
 interface Empty
          Statement subinterface for the empty statement.
 interface ExpressionStatement
          Statement subinterface for a general container of expressions such as assignments, method invocations, field acesses, etc...
 interface For
          Statement subinterface for the for construct.
 interface If
          Statement subinterface for the if, else if, else construct.
 interface Let
          Statement subinterface for local variable declarations.
 interface LocalBlock
          Statement subinterface for a local block.
 interface LocalClass
          Declaration subinterface for a local class.
 interface Return
          Statement subinterface for the return keyword.
 interface Switch
          Statement subinterface for the switch construct.
 interface Synchronized
          Statement subinterface for the synchronized construct.
 interface Throw
          Statement subinterface for the throw keyword.
 interface Try
          Statement subinterface for the try catch finally construct.
 interface While
          Statement subinterface for the while construct.