public void onComponentCreated(FaceletContext faceletContext, UIComponent separator, UIComponent parent) {
Application application = faceletContext.getFacesContext().getApplication();
UIViewRoot root = ComponentUtils.findViewRoot(faceletContext, parent);
UIOutput label = (UIOutput) application.createComponent(UILabel.COMPONENT_TYPE);
label.setId(root.createUniqueId());
label.setRendererType("Label");
setAttributes(faceletContext, label);
separator.getFacets().put(Facets.LABEL, label);
if (labelAttribute != null) {
if (labelAttribute.isLiteral()) {