new version with WorkingCopy Management
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / core / builder / ClasspathLocation.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.core.builder;
12
13 import net.sourceforge.phpdt.internal.compiler.env.NameEnvironmentAnswer;
14
15 import org.eclipse.core.resources.IContainer;
16 import org.eclipse.core.resources.IFile;
17 import org.eclipse.core.runtime.IPath;
18
19 public abstract class ClasspathLocation {
20
21 static ClasspathLocation forSourceFolder(IContainer sourceFolder, IContainer outputFolder, char[][] exclusionPatterns) {
22         return new ClasspathMultiDirectory(sourceFolder, outputFolder, exclusionPatterns);
23 }
24
25 public static ClasspathLocation forBinaryFolder(IContainer binaryFolder, boolean isOutputFolder) {
26         return new ClasspathDirectory(binaryFolder, isOutputFolder);
27 }
28
29 //static ClasspathLocation forLibrary(String libraryPathname) {
30 //      return new ClasspathJar(libraryPathname);
31 //}
32
33 //static ClasspathLocation forLibrary(IFile library) {
34 //      return new ClasspathJar(library);
35 //}
36
37 public abstract NameEnvironmentAnswer findClass(String binaryFileName, String qualifiedPackageName, String qualifiedBinaryFileName);
38
39 public abstract IPath getProjectRelativePath();
40
41 public boolean isOutputFolder() {
42         return false;
43 }
44
45 public abstract boolean isPackage(String qualifiedPackageName);
46
47 // free anything which is not required when the state is saved
48 public void cleanup() {
49 }
50 // reset any internal caches before another compile loop starts
51 public void reset() {
52 }
53 }