Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 039d9268e5a995c595969766f05390c2f59fdf6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.jst.jsf.facelet.core.internal.registry.taglib;

import org.eclipse.core.resources.IProject;

/**
 * Implemented by factories that create new IProjectTaglibDescriptor objects.
 * 
 * @author cbateman
 *
 */
public interface IProjectTaglibDescriptorFactory
{
    /**
     * @param project
     * @param factory
     * @param jarProvider
     * @param webAppProvider
     * @param vcQuery
     * @return a new taglib descriptor.
     */
    IProjectTaglibDescriptor create(final IProject project, final TagRecordFactory factory);
}

Back to the top