KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > ast > StringLit


1 package polyglot.ast;
2
3 /**
4  * A <code>StringLit</code> represents an immutable instance of a
5  * <code>String</code> which corresponds to a literal string in Java code.
6  */

7 public interface StringLit extends Lit
8 {
9     /** The string. */
10     String JavaDoc value();
11     /** Set the string. */
12     StringLit value(String JavaDoc value);
13 }
14
Popular Tags