// Update the exported packages for the project
ExportedPackageDecoratorJob.scheduleForProject(getProject());
// Load Eclipse classpath containers
model.clearClasspath();
EclipseClasspathPreference classpathPref = EclipseClasspathPreference.parse(projectPrefs.getString(EclipseClasspathPreference.PREFERENCE_KEY));
if (classpathPref == EclipseClasspathPreference.expose) {
List<File> classpathFiles = new ArrayList<File>(20);
accumulateClasspath(classpathFiles, JavaCore.create(getProject()), false, new ClasspathContainerFilter());
for (File file : classpathFiles) {
log(LOG_FULL, "Adding Eclipse classpath entry %s", file.getAbsolutePath());