Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5e2c01c16101c941fd0111407519bf9549e2d7ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.jst.jsf.core.internal;

import java.util.Set;

/**
 * Sub-classed by all tag registry factories
 * @author cbateman
 *
 */
public abstract class AbstractTagRegistryFactoryProvider implements ITagRegistryFactoryProvider
{
    public abstract Set<ITagRegistryFactoryInfo> getTagRegistryFactories();

}

Back to the top