blob: 63b5ecb236d30e083df5d3846aafd4253618974f [file] [log] [blame]
package org.eclipse.jst.jsf.core.internal.tld;
/**
* Global tag library constants
*
* @author cbateman
*
*/
public interface ITLDConstants {
/**
* The JSF core (f) component URI
*/
public static final String URI_JSF_CORE = "http://java.sun.com/jsf/core"; //$NON-NLS-1$
/**
* The JSF html (h) component URI
*/
public static final String URI_JSF_HTML = "http://java.sun.com/jsf/html"; //$NON-NLS-1$
/**
* The last component of the html uri
*/
public static final String URI_HTML = "html"; //$NON-NLS-1$
/**
* The last component of the core uri
*/
public static final String URI_JSP = "jsp"; //$NON-NLS-1$
}