Package org.eclipse.jdt.launching
Interface IRuntimeContainerComparator
-
@Deprecated public interface IRuntimeContainerComparator
Deprecated.support has been added toClasspathContainerInitializer
to handle comparison of classpath containers. UseClasspathContainerInitializer.getComparisonID(IPath,IJavaProject)
. When a classpath container implements this interface, this interface is used to determine equality before using the support defined inClasspathContainerInitializer
.Determines if container entries are duplicates/redundant on a runtime classpath. If anIClasspathContianer
implements this interface, theisDuplicate
method is used to determine if containers are duplicates/redundant. Otherwise, containers with the same identifier are considered duplicates.- Since:
- 2.0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
isDuplicate(IPath containerPath)
Deprecated.Returns whether this container is a duplicate of the container identified by the given path.
-
-
-
Method Detail
-
isDuplicate
boolean isDuplicate(IPath containerPath)
Deprecated.Returns whether this container is a duplicate of the container identified by the given path.- Parameters:
containerPath
- the container to compare against- Returns:
- whether this container is a duplicate of the container identified by the given path
-
-