All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pl.fhframework.model.forms.attributes.AttributeHolderBuilder Maven / Gradle / Ivy

There is a newer version: 4.10.401
Show newest version
package pl.fhframework.model.forms.attributes;

public class AttributeHolderBuilder {
    private AttributeHolder attributeHolder;

    public AttributeHolderBuilder() {
        attributeHolder = new AttributeHolder();
    }

    public AttributeHolderBuilder attribute(Attribute attribute){
        attributeHolder.addAttribute(attribute);
        return this;
    }

    public AttributeHolder build() {
        return attributeHolder;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy