blob: ffafb4a46244168b0b0fdbcd97e40571a74396e3 [file] [log] [blame]
package org.eclipse.jst.jsf.core;
/**
* JSF Core framework constants
*
* @author cbateman
*
*/
public final class IJSFCoreConstants
{
/**
* The global id for the JSF facet
* TODO: align with extensioin point through plugin.properties
*/
public static final String JSF_CORE_FACET_ID = "jst.jsf"; //$NON-NLS-1$
/**
* The facet version for a JSF 1.0 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_0 = "1.0"; //$NON-NLS-1$
/**
* The constant id for a JSF 1.0 project
*/
public final static String JSF_VERSION_1_0 = FACET_VERSION_1_0;
/**
* The facet version for a JSF 1.1 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_1 = "1.1"; //$NON-NLS-1$
/**
* The constant id for a JSF 1.1 project
*/
public final static String JSF_VERSION_1_1 = FACET_VERSION_1_1;
/**
* The facet version for a JSF 1.2 project
* TODO: align with extensioin point through plugin.properties
*/
public final static String FACET_VERSION_1_2 = "1.2";//$NON-NLS-1$
/**
* The constant id for a JSF 1.2 project
*/
public final static String JSF_VERSION_1_2 = FACET_VERSION_1_2;
private IJSFCoreConstants()
{
// no instantiation
}
}