package net.sourceforge.phpdt.internal.compiler.ast;
+import java.util.List;
+
import net.sourceforge.phpdt.internal.compiler.parser.Outlineable;
import net.sourceforge.phpdt.internal.ui.PHPUiImages;
+
import org.eclipse.jface.resource.ImageDescriptor;
+import org.eclipse.jface.text.Position;
/**
* @author Matthieu Casanova
private Object parent;
- public InclusionStatement(Object parent,
- int keyword,
- Expression expression,
- int sourceStart) {
- super(sourceStart, expression.sourceEnd);
+ private Position position;
+
+ public InclusionStatement(final Object parent,
+ final int keyword,
+ final Expression expression,
+ final int sourceStart,
+ final int sourceEnd) {
+ super(sourceStart, sourceEnd);
this.keyword = keyword;
this.expression = expression;
this.parent = parent;
+ position = new Position(sourceStart, sourceEnd);
}
public String keywordToString() {
* @param tab how many tabs (not used here
* @return a String
*/
- public String toString(int tab) {
+ public String toString(final int tab) {
final StringBuffer buffer = new StringBuffer(tabString(tab));
+ buffer.append(toString());
+ return buffer.toString();
+ }
+
+ public String toString() {
+ final StringBuffer buffer = new StringBuffer();
if (silent) {
buffer.append('@');
}
public Object getParent() {
return parent;
}
+
+ public Position getPosition() {
+ return position;
+ }
+
+ /**
+ * Get the variables from outside (parameters, globals ...)
+ */
+ public void getOutsideVariable(final List list) {
+ expression.getOutsideVariable(list);
+ }
+
+ /**
+ * get the modified variables.
+ */
+ public void getModifiedVariable(final List list) {
+ expression.getModifiedVariable(list);
+ }
+
+ /**
+ * Get the variables used.
+ */
+ public void getUsedVariable(final List list) {
+ expression.getUsedVariable(list);
+ }
}