X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FieldDeclaration.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FieldDeclaration.java index 90218e1..69b3616 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FieldDeclaration.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/FieldDeclaration.java @@ -1,5 +1,10 @@ package net.sourceforge.phpdt.internal.compiler.ast; +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; + /** * A Field declaration. * This is a variable declaration for a php class @@ -8,20 +13,24 @@ package net.sourceforge.phpdt.internal.compiler.ast; * var $toto,$tata; * @author Matthieu Casanova */ -public class FieldDeclaration extends Statement { +public class FieldDeclaration extends Statement implements Outlineable { /** The variables. */ public VariableDeclaration[] vars; + private Object parent; + private Position position; /** * Create a new field. * @param vars the array of variables. * @param sourceStart the starting offset * @param sourceEnd the ending offset */ - public FieldDeclaration(VariableDeclaration[] vars, int sourceStart, int sourceEnd) { + public FieldDeclaration(VariableDeclaration[] vars, int sourceStart, int sourceEnd, Object parent) { super(sourceStart, sourceEnd); this.vars = vars; + this.parent = parent; + position = new Position(sourceStart, sourceEnd); } /** @@ -31,14 +40,30 @@ public class FieldDeclaration extends Statement { */ public String toString(int tab) { final StringBuffer buff = new StringBuffer(tabString(tab)); - buff.append("var "); + buff.append("var ");//$NON-NLS-1$ for (int i = 0; i < vars.length; i++) { VariableDeclaration var = vars[i]; if (i != 0) { - buff.append(','); + buff.append(',');//$NON-NLS-1$ } buff.append(var.toStringExpression()); } return buff.toString(); } + + /** + * Get the image of a variable. + * @return the image that represents a php variable + */ + public ImageDescriptor getImage() { + return PHPUiImages.DESC_VAR; + } + + public Object getParent() { + return parent; + } + + public Position getPosition() { + return position; + } }