KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > NumLit


1 package polyglot.ast;
2
3 /**
4  * An integer literal: longs, ints, shorts, bytes, and chars.
5  */

6 public interface NumLit extends Lit
7 {
8     /** The literal's value. */
9     long longValue();
10 }
11
Popular Tags