Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0c5e5f3e840b5b56ba601e1e26977881d920bf1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
if (JavaModelManager.CP_RESOLVE_VERBOSE){
	System.out.println("CPContainer SET  - setting container: ["+containerPath+"] for projects: {" //$NON-NLS-1$ //$NON-NLS-2$
		+ (org.eclipse.wst.jsdt.internal.compiler.util.Util.toString(affectedProjects, 
				new org.eclipse.wst.jsdt.internal.compiler.util.Util.Displayable(){ 
					public String displayString(Object o) { return ((IJavaProject) o).getElementName(); }
				}))
		+ "} with values: " //$NON-NLS-1$
		+ (org.eclipse.wst.jsdt.internal.compiler.util.Util.toString(respectiveContainers, 
				new org.eclipse.wst.jsdt.internal.compiler.util.Util.Displayable(){ 
					public String displayString(Object o) { return ((IJsGlobalScopeContainer) o).getDescription(); }
				}))
			);
}

Back to the top