blob: cdcae4840b5ae19b7918a1a023b237a305bb05c9 [file] [log] [blame]
package org.eclipse.jst.jsf.common.runtime.internal.view.model.common;
/**
* Super-interface of all JSF tag elements.
*
* @author cbateman
*
*/
public interface ITagElement {
/**
* @return the name of the tag
*/
public abstract String getName();
/**
* @return the namespace uri for this tag
*/
public abstract String getUri();
/**
* @return the fully qualified class name in dot separated format
* (i.e. javax.faces.webapp.ConverterTag)
*/
public abstract String getTagHandlerClassName();
}