Called by JSF, this method simply emits a logging statement if tracing is enabled.
358359360361362363364365366367368
child.encodeBegin(context); if (child.getRendersChildren()) { child.encodeChildren(context); } child.encodeEnd(context); } } } /**
139140141142143144145146147148149
writer.startElement(HTML.SPAN_ELEM, panelNav); writeStyleAttributes(writer, style, styleClass); } indent(writer, level); child.encodeBegin(facesContext); child.encodeEnd(facesContext); if (style != null || styleClass != null) { writer.endElement(HTML.SPAN_ELEM); }
96979899100101102103104105106
writeStyleAttributes(writer, style, styleClass); } indent(writer, level); child.encodeBegin(facesContext); child.encodeEnd(facesContext); if (style != null || styleClass != null) { writer.endElement(HTML.SPAN_ELEM); }
289290291292293294295296297298299
link.encodeBegin(facesContext); facetComp.encodeBegin(facesContext); if (facetComp.getRendersChildren()) facetComp.encodeChildren(facesContext); facetComp.encodeEnd(facesContext); link.encodeEnd(facesContext); } protected void renderPaginator(FacesContext facesContext, HtmlDataScroller scroller) throws IOException {
7071727374757677787980
aroundDecoration.encodeEnd(context); } if (aroundInvalidDecoration!=null && hasMessage) { aroundInvalidDecoration.setParent(decorate); aroundInvalidDecoration.encodeEnd(context); } context.getResponseWriter().endElement("div"); Contexts.getEventContext().remove("invalid"); Contexts.getEventContext().remove("required");
6566676869707172737475
child.encodeBegin(context); if (child.getRendersChildren()) { child.encodeChildren(context); } child.encodeEnd(context); } } public void encodeEnd(FacesContext context, UIComponent component)
163164165166167168169170171172173
UIComponent kid = (UIComponent) kids.next(); kid.encodeBegin(context); if (kid.getRendersChildren()) { kid.encodeChildren(context); } kid.encodeEnd(context); } if (log.isTraceEnabled()) { log.trace("encodeChildren(id=" + component.getId() + ") end"); }
141142143144145146147148149150151
ResponseWriter out = context.getResponseWriter(); UIComponent month = component.getFacet("month"); month.encodeBegin(context); month.encodeChildren(context); month.encodeEnd(context); out.writeText("\u00a0/\u00a0", null); UIComponent day = component.getFacet("day"); day.encodeBegin(context);
148149150151152153154155156157158
out.writeText("\u00a0/\u00a0", null); UIComponent day = component.getFacet("day"); day.encodeBegin(context); day.encodeChildren(context); day.encodeEnd(context); out.writeText("\u00a0/\u00a0", null); UIComponent year = component.getFacet("year"); year.encodeBegin(context);
155156157158159160161162163164165
out.writeText("\u00a0/\u00a0", null); UIComponent year = component.getFacet("year"); year.encodeBegin(context); year.encodeChildren(context); year.encodeEnd(context); } @Override public boolean getRendersChildren() {