Package jakarta.faces.component
Interface Doctype
- All Known Implementing Classes:
- HtmlDoctype
public interface Doctype
 Doctype is an interface that must be implemented by any UIComponent that represents a document type declaration.
 
- Since:
- 4.0
- 
Method SummaryModifier and TypeMethodDescriptionReturns the public identifier of the document, ornullif there is none.Returns the name of the first element in the document, nevernull.Returns the system identifier of the document, ornullif there is none.
- 
Method Details- 
getRootElementString getRootElement()Returns the name of the first element in the document, nevernull. For example,"html".- Returns:
- The name of the first element in the document, never null.
 
- 
getPublicString getPublic()Returns the public identifier of the document, ornullif there is none. For example,"-//W3C//DTD XHTML 1.1//EN".- Returns:
- The public identifier of the document, or nullif there is none.
 
- 
getSystemString getSystem()Returns the system identifier of the document, ornullif there is none. For example,"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd".- Returns:
- The system identifier of the document, or nullif there is none.
 
 
-