Package jakarta.faces.component.html
Class HtmlDoctype
- java.lang.Object
-
- jakarta.faces.component.UIComponent
-
- jakarta.faces.component.UIComponentBase
-
- jakarta.faces.component.UIOutput
-
- jakarta.faces.component.html.HtmlDoctype
-
- All Implemented Interfaces:
Doctype
,PartialStateHolder
,StateHolder
,TransientStateHolder
,ValueHolder
,ComponentSystemEventListener
,FacesListener
,SystemEventListenerHolder
,EventListener
public class HtmlDoctype extends UIOutput implements Doctype
NONEBy default, the
rendererType
property must be set to "jakarta.faces.Doctype
". This value can be changed by calling thesetRendererType()
method.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static class
HtmlDoctype.PropertyKeys
The property keys.
-
Field Summary
Fields Modifier and Type Field Description static String
COMPONENT_TYPE
The standard component type for this component.-
Fields inherited from class jakarta.faces.component.UIOutput
COMPONENT_FAMILY
-
Fields inherited from class jakarta.faces.component.UIComponent
ATTRS_WITH_DECLARED_DEFAULT_VALUES, BEANINFO_KEY, bindings, COMPOSITE_COMPONENT_TYPE_KEY, COMPOSITE_FACET_NAME, FACETS_KEY, VIEW_LOCATION_KEY
-
-
Constructor Summary
Constructors Constructor Description HtmlDoctype()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPublic()
Return the value of thepublic
property.String
getRootElement()
Return the value of therootElement
property.String
getSystem()
Return the value of thesystem
property.void
setPublic(String _public)
Set the value of thepublic
property.void
setRootElement(String rootElement)
Set the value of therootElement
property.void
setSystem(String system)
Set the value of thesystem
property.-
Methods inherited from class jakarta.faces.component.UIOutput
clearInitialState, getConverter, getFamily, getLocalValue, getValue, markInitialState, resetValue, restoreState, saveState, setConverter, setValue
-
Methods inherited from class jakarta.faces.component.UIComponentBase
addClientBehavior, addFacesListener, broadcast, decode, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientBehaviors, getClientId, getDefaultEventName, getEventNames, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getListenersForEventClass, getParent, getPassThroughAttributes, getRenderer, getRendererType, getRendersChildren, invokeOnComponent, isRendered, isTransient, processDecodes, processRestoreState, processSaveState, processUpdates, processValidators, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransient, subscribeToEvent, unsubscribeFromEvent
-
Methods inherited from class jakarta.faces.component.UIComponent
encodeAll, getClientId, getCompositeComponentParent, getContainerClientId, getCurrentComponent, getCurrentCompositeComponent, getNamingContainer, getPassThroughAttributes, getResourceBundleMap, getStateHelper, getStateHelper, getTransientStateHelper, getTransientStateHelper, getValueExpression, initialStateMarked, isCompositeComponent, isInView, isVisitable, popComponentFromEL, processEvent, pushComponentToEL, restoreTransientState, saveTransientState, setInView, setValueExpression, visitTree
-
-
-
-
Field Detail
-
COMPONENT_TYPE
public static final String COMPONENT_TYPE
The standard component type for this component.
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPublic
public String getPublic()
Return the value of the
public
property.
-
setPublic
public void setPublic(String _public)
Set the value of the
public
property.- Parameters:
_public
- the new property value
-
getRootElement
public String getRootElement()
Return the value of the
rootElement
property.- Specified by:
getRootElement
in interfaceDoctype
- Returns:
- the property value
Contents:
The root XML element
-
setRootElement
public void setRootElement(String rootElement)
Set the value of the
rootElement
property.- Parameters:
rootElement
- the new property value
-
getSystem
public String getSystem()
Return the value of the
system
property.
-
setSystem
public void setSystem(String system)
Set the value of the
system
property.- Parameters:
system
- the new property value
-
-