Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 352c327963b70bf2d5fcd1ef5d543af6d1f09282 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.jst.jsf.common.internal.resource;

import java.util.Collection;
import java.util.jar.JarFile;

import org.eclipse.core.resources.IProject;

/**
 * Provider of jars for use by the locator. Exists to abstract the locator
 * from JDT for test purposes.
 * 
 */
public interface IJarProvider
{
    /**
     * @param project
     * @return a list of valid jar files.
     */
    Collection<? extends JarFile> getJars(final IProject project);
}

Back to the top