A massive organize imports and formatting of the sources using default Eclipse code...
[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.runtime.IPath;
17
18 public abstract class ClasspathLocation {
19
20         static ClasspathLocation forSourceFolder(IContainer sourceFolder,
21                         IContainer outputFolder, char[][] exclusionPatterns) {
22                 return new ClasspathMultiDirectory(sourceFolder, outputFolder,
23                                 exclusionPatterns);
24         }
25
26         public static ClasspathLocation forBinaryFolder(IContainer binaryFolder,
27                         boolean isOutputFolder) {
28                 return new ClasspathDirectory(binaryFolder, isOutputFolder);
29         }
30
31         // static ClasspathLocation forLibrary(String libraryPathname) {
32         // return new ClasspathJar(libraryPathname);
33         // }
34
35         // static ClasspathLocation forLibrary(IFile library) {
36         // return new ClasspathJar(library);
37         // }
38
39         public abstract NameEnvironmentAnswer findClass(String binaryFileName,
40                         String qualifiedPackageName, String qualifiedBinaryFileName);
41
42         public abstract IPath getProjectRelativePath();
43
44         public boolean isOutputFolder() {
45                 return false;
46         }
47
48         public abstract boolean isPackage(String qualifiedPackageName);
49
50         // free anything which is not required when the state is saved
51         public void cleanup() {
52         }
53
54         // reset any internal caches before another compile loop starts
55         public void reset() {
56         }
57 }