impl/src/main/java/org/apache/myfaces/config/impl/FacesConfigUnmarshallerImpl.java [413:439]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        onChild("attribute", node, (n) -> {
            AttributeImpl a = new AttributeImpl();
            onChild("description", n, (cn) -> { a.addDescription(getTextContent(cn)); });
            onChild("display-name", n, (cn) -> { a.addDisplayName(getTextContent(cn)); });
            onChild("icon", n, (cn) -> { a.addIcon(getTextContent(cn)); });
            onChild("attribute-name", n, (cn) -> { a.setAttributeName(getTextContent(cn)); });
            onChild("attribute-class", n, (cn) -> { a.setAttributeClass(getTextContent(cn)); });
            onChild("default-value", n, (cn) -> { a.setDefaultValue(getTextContent(cn)); });
            onChild("suggested-value", n, (cn) -> { a.setSuggestedValue(getTextContent(cn)); });
            onChild("attribute-extension", n, (cn) -> { a.addAttributeExtension(getTextContent(cn)); });
            obj.addAttribute(a);
        });

        onChild("property", node, (n) -> {
            PropertyImpl p = new PropertyImpl();
            onChild("description", n, (cn) -> { p.addDescription(getTextContent(cn)); });
            onChild("display-name", n, (cn) -> { p.addDisplayName(getTextContent(cn)); });
            onChild("icon", n, (cn) -> { p.addIcon(getTextContent(cn)); });
            onChild("property-name", n, (cn) -> { p.setPropertyName(getTextContent(cn)); });
            onChild("property-class", n, (cn) -> { p.setPropertyClass(getTextContent(cn)); });
            onChild("default-value", n, (cn) -> { p.setDefaultValue(getTextContent(cn)); });
            onChild("suggested-value", n, (cn) -> { p.setSuggestedValue(getTextContent(cn)); });
            onChild("property-extension", n, (cn) -> { p.addPropertyExtension(getTextContent(cn)); });
            obj.addProperty(p);
        });

        return obj;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



impl/src/main/java/org/apache/myfaces/config/impl/FacesConfigUnmarshallerImpl.java [449:475]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        onChild("attribute", node, (n) -> {
            AttributeImpl a = new AttributeImpl();
            onChild("description", n, (cn) -> { a.addDescription(getTextContent(cn)); });
            onChild("display-name", n, (cn) -> { a.addDisplayName(getTextContent(cn)); });
            onChild("icon", n, (cn) -> { a.addIcon(getTextContent(cn)); });
            onChild("attribute-name", n, (cn) -> { a.setAttributeName(getTextContent(cn)); });
            onChild("attribute-class", n, (cn) -> { a.setAttributeClass(getTextContent(cn)); });
            onChild("default-value", n, (cn) -> { a.setDefaultValue(getTextContent(cn)); });
            onChild("suggested-value", n, (cn) -> { a.setSuggestedValue(getTextContent(cn)); });
            onChild("attribute-extension", n, (cn) -> { a.addAttributeExtension(getTextContent(cn)); });
            obj.addAttribute(a);
        });
        
        onChild("property", node, (n) -> {
            PropertyImpl p = new PropertyImpl();
            onChild("description", n, (cn) -> { p.addDescription(getTextContent(cn)); });
            onChild("display-name", n, (cn) -> { p.addDisplayName(getTextContent(cn)); });
            onChild("icon", n, (cn) -> { p.addIcon(getTextContent(cn)); });
            onChild("property-name", n, (cn) -> { p.setPropertyName(getTextContent(cn)); });
            onChild("property-class", n, (cn) -> { p.setPropertyClass(getTextContent(cn)); });
            onChild("default-value", n, (cn) -> { p.setDefaultValue(getTextContent(cn)); });
            onChild("suggested-value", n, (cn) -> { p.setSuggestedValue(getTextContent(cn)); });
            onChild("property-extension", n, (cn) -> { p.addPropertyExtension(getTextContent(cn)); });
            obj.addProperty(p);
        });
        
        return obj;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



