From: kpouer Date: Fri, 24 Jan 2003 11:36:05 +0000 (+0000) Subject: The name field is now protected (PHPVarDeclaration needs) X-Git-Url: http://secure.phpeclipse.com The name field is now protected (PHPVarDeclaration needs) --- diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java index 9e387f4..b3aaf25 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/phpparser/PHPSegment.java @@ -8,7 +8,7 @@ import org.eclipse.jface.text.Position; * @author khartlage */ public abstract class PHPSegment { - private String name; + protected String name; private Position position; private Object parent;