Some minor changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / StringLiteral.java
index 7ef16a1..1d19a60 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;
+
+public final class StringLiteral extends Literal {
+  private String source;
 
-  AbstractVariable[] variablesInside;
+  private AbstractVariable[] variablesInside;
 
   public StringLiteral(final Token token) {
     super(token.sourceStart,token.sourceEnd);