X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java index 9008abf..92e2c43 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/LoadPathEntry.java @@ -5,8 +5,9 @@ import org.eclipse.core.runtime.IPath; public class LoadPathEntry { public static final String TYPE_PROJECT = "project"; - + protected IProject project; + protected String type; public LoadPathEntry(IProject aProjectEntry) { @@ -17,22 +18,22 @@ public class LoadPathEntry { public IPath getPath() { return project.getFullPath(); } - + public IProject getProject() { return project; } - + public String getType() { return type; } - + public String toXML() { StringBuffer buffer = new StringBuffer(); - + buffer.append(""); - + return buffer.toString(); } }