Skip to main content
summaryrefslogtreecommitdiffstats
blob: 7ece953b8fcf59cd2551ac2ac934abced11f314d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.eclipse.jst.jsf.designtime.internal.resources;

/**
 * Represents a JSF loadable resource (spec 2.6).
 * 
 * @author cbateman
 *
 */
public interface IJSFResource extends IJSFResourceFragment
{
    /**
     * @param contentTypeName
     * @return true if the resources matches the content type indicated by the
     *         contentTypeName.
     */
    public abstract boolean isContentType(final String contentTypeName);

}

Back to the top