blob: c077bff1f4c4a616d27ab395938817669166e5b3 [file] [log] [blame]
public class X {
void foo() {
if (JavaModelManager.CP_RESOLVE_VERBOSE) {
System.out
.println(
"CPContainer SET - setting container: ["//$NON-NLS-1$
+ containerPath
+ "] for projects: {" //$NON-NLS-1$
+ (org.eclipse.jdt.internal.compiler.util.Util
.toString(affectedProjects,
new org.eclipse.jdt.internal.compiler.util.Util.Displayable() {
public String displayString(
Object o) {
return ((IJavaProject) o)
.getElementName();
}
}))
+ "} with values: " //$NON-NLS-1$
+ (org.eclipse.jdt.internal.compiler.util.Util
.toString(
respectiveContainers,
new org.eclipse.jdt.internal.compiler.util.Util.Displayable() {
public String displayString(
Object o) {
return ((IClasspathContainer) o)
.getDescription();
}
})));
}
}
}