KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > CharLit


1 package polyglot.ast;
2
3 /**
4  * An <code>CharLit</code> represents a literal in java of
5  * <code>char</code> type.
6  */

7 public interface CharLit extends NumLit
8 {
9     /**
10      * The literal's value.
11      */

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

17     CharLit value(char value);
18 }
19
Popular Tags