added class fields to outline
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / StringLiteral.java
index 7ef16a1..a9d0338 100644 (file)
  ******************************************************************************/
 package net.sourceforge.phpdt.internal.compiler.ast;
 
-import test.Token;
-
 import java.util.List;
 
-public class StringLiteral extends Literal {
-  String source;
+import test.Token;
 
-  AbstractVariable[] variablesInside;
+public final class StringLiteral extends Literal {
+  private String source;
+
+  private AbstractVariable[] variablesInside;
 
   public StringLiteral(final Token token) {
     super(token.sourceStart,token.sourceEnd);
@@ -57,7 +57,6 @@ public class StringLiteral extends Literal {
    * @param token the token
    * @param s sourcestart
    * @param e sourceend
-   * @deprecated
    */
   public StringLiteral(final char[] token, final int s, final int e) {
     this(new String(token),s, e);