Skip to main content
summaryrefslogtreecommitdiffstats
blob: e862a65b2c33421c336fe2083d08cf58927d8272 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*******************************************************************************
 * Copyright (c) 2001, 2009 Oracle Corporation and others. All rights reserved.
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors: Oracle Corporation - initial API and implementation
 *******************************************************************************/


package org.eclipse.jst.jsf.core.internal.project.facet;

import org.eclipse.jst.jsf.common.facet.libraryprovider.UserLibraryVersionValidator;


/**
 * Checks that the JSF user library is version-compatible with the JSF facet.
 * 
 * @author Debajit Adhikary
 * 
 */
public class JSFLibraryValidator extends UserLibraryVersionValidator
{
    private static final String CLASS_NAME_IDENTIFYING_IMPLEMENTATION_JAR = "javax/faces/render/RenderKit.class"; //$NON-NLS-1$


    /**
     * Construct a validator for the JSF facet.
     */
    public JSFLibraryValidator ()
    {
        super(CLASS_NAME_IDENTIFYING_IMPLEMENTATION_JAR);
    }
}

Back to the top