Class JWhileLoop

java.lang.Object
com.sun.codemodel.JWhileLoop
All Implemented Interfaces:
JStatement

public class JWhileLoop extends Object implements JStatement
While statement
  • Field Details

    • test

      private JExpression test
      Test part of While statement for determining exit state
    • body

      private JBlock body
      JBlock of statements which makes up body of this While statement
  • Constructor Details

    • JWhileLoop

      JWhileLoop(JExpression test)
      Construct a While statment
  • Method Details