Class JDoLoop

  • All Implemented Interfaces:
    JStatement

    public class JDoLoop
    extends java.lang.Object
    implements JStatement
    Do loops
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private JBlock body
      JBlock of statements which makes up body of this Do statement
      private JExpression test
      Test part of Do statement for determining exit state
    • Constructor Summary

      Constructors 
      Constructor Description
      JDoLoop​(JExpression test)
      Construct a Do statment
    • Field Detail

      • test

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

        private JBlock body
        JBlock of statements which makes up body of this Do statement
    • Constructor Detail

      • JDoLoop

        JDoLoop​(JExpression test)
        Construct a Do statment