Class FaceletDoctype

java.lang.Object
com.sun.faces.facelets.compiler.FaceletDoctype
All Implemented Interfaces:
Doctype

public class FaceletDoctype extends Object implements Doctype
  • Constructor Details

    • FaceletDoctype

      public FaceletDoctype(String rootElement, String _public, String system)
  • Method Details

    • getRootElement

      public String getRootElement()
      Description copied from interface: Doctype
      Returns the name of the first element in the document, never null. For example, "html".
      Specified by:
      getRootElement in interface Doctype
      Returns:
      The name of the first element in the document, never null.
    • getPublic

      public String getPublic()
      Description copied from interface: Doctype
      Returns the public identifier of the document, or null if there is none. For example, "-//W3C//DTD XHTML 1.1//EN".
      Specified by:
      getPublic in interface Doctype
      Returns:
      The public identifier of the document, or null if there is none.
    • getSystem

      public String getSystem()
      Description copied from interface: Doctype
      Returns the system identifier of the document, or null if there is none. For example, "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd".
      Specified by:
      getSystem in interface Doctype
      Returns:
      The system identifier of the document, or null if there is none.