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 value(); 11 /** Set the string. */ 12 StringLit value(String value); 13 } 14