1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / LoadPathEntry.java
index 9008abf..92e2c43 100644 (file)
@@ -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("<pathentry type=\"");
                buffer.append(type + "\" ");
                buffer.append("path=\"" + getPath() + "\"/>");
-               
+
                return buffer.toString();
        }
 }