X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/ClasspathEntry.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/ClasspathEntry.java index 6ca5c30..fc56c48 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/ClasspathEntry.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/core/ClasspathEntry.java @@ -10,7 +10,6 @@ *******************************************************************************/ package net.sourceforge.phpdt.internal.core; -import java.io.File; import java.util.HashMap; import java.util.HashSet; @@ -22,13 +21,11 @@ import net.sourceforge.phpdt.core.IPackageFragmentRoot; import net.sourceforge.phpdt.core.JavaCore; import net.sourceforge.phpdt.core.JavaModelException; import net.sourceforge.phpdt.core.compiler.CharOperation; -import net.sourceforge.phpdt.internal.compiler.impl.CompilerOptions; import net.sourceforge.phpdt.internal.core.util.Util; import net.sourceforge.phpdt.internal.corext.Assert; import net.sourceforge.phpeclipse.PHPeclipsePlugin; import org.eclipse.core.resources.IProject; -import org.eclipse.core.resources.IResource; import org.eclipse.core.resources.IWorkspaceRoot; import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.runtime.CoreException; @@ -43,84 +40,93 @@ import org.w3c.dom.Element; public class ClasspathEntry implements IClasspathEntry { /** - * Describes the kind of classpath entry - one of - * CPE_PROJECT, CPE_LIBRARY, CPE_SOURCE, CPE_VARIABLE or CPE_CONTAINER + * Describes the kind of classpath entry - one of CPE_PROJECT, CPE_LIBRARY, + * CPE_SOURCE, CPE_VARIABLE or CPE_CONTAINER */ public int entryKind; /** - * Describes the kind of package fragment roots found on - * this classpath entry - either K_BINARY or K_SOURCE or - * K_OUTPUT. + * Describes the kind of package fragment roots found on this classpath + * entry - either K_BINARY or K_SOURCE or K_OUTPUT. */ public int contentKind; /** - * The meaning of the path of a classpath entry depends on its entry kind: