blob: 6db53e7f42c4f6118f734f7017aa47a1ef9ba893 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.core.builder;
import org.eclipse.core.resources.*;
import org.eclipse.core.runtime.*;
import org.eclipse.jdt.internal.compiler.env.AccessRuleSet;
import org.eclipse.jdt.internal.compiler.env.NameEnvironmentAnswer;
public abstract class ClasspathLocation {
static ClasspathLocation forSourceFolder(IContainer sourceFolder, IContainer outputFolder, char[][] inclusionPatterns, char[][] exclusionPatterns) {
return new ClasspathMultiDirectory(sourceFolder, outputFolder, inclusionPatterns, exclusionPatterns);
}
public static ClasspathLocation forBinaryFolder(IContainer binaryFolder, boolean isOutputFolder, AccessRuleSet accessRuleSet) {
return new ClasspathDirectory(binaryFolder, isOutputFolder, accessRuleSet);
}
static ClasspathLocation forLibrary(String libraryPathname, AccessRuleSet accessRestriction) {
return new ClasspathJar(libraryPathname, accessRestriction);
}
static ClasspathLocation forLibrary(IFile library, AccessRuleSet accessRuleSet) {
return new ClasspathJar(library, accessRuleSet);
}
public abstract NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName);
public abstract IPath getProjectRelativePath();
public boolean isOutputFolder() {
return false;
}
public abstract boolean isPackage(String qualifiedPackageName);
public void cleanup() {
// free anything which is not required when the state is saved
}
public void reset() {
// reset any internal caches before another compile loop starts
}
}