KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > BooleanLit


1 package polyglot.ast;
2
3 /**
4  * A <code>BooleanLit</code> represents a boolean literal expression.
5  */

6 public interface BooleanLit extends Lit
7 {
8     /**
9      * The literal's value.
10      */

11     boolean value();
12
13     /**
14      * Set the literal's value.
15      */

16     BooleanLit value(boolean value);
17 }
18
Popular Tags