KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > reflect > code > CtWhile


1 package spoon.reflect.code;
2
3 /**
4  * This code element defines a <code>while</code> loop.
5  */

6 public interface CtWhile extends CtLoop {
7     /**
8      * Gets the looping boolean test expression.
9      */

10     CtExpression<Boolean JavaDoc> getLoopingExpression();
11
12     /**
13      * Sets the looping boolean test expression.
14      */

15     void setLoopingExpression(CtExpression<Boolean JavaDoc> expression);
16 }
17
Popular Tags