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

com.sippnex.firemaw.FiremawDto Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package com.sippnex.firemaw;

import java.util.ArrayList;
import java.util.List;

public class FiremawDto {

    private List properties;

    public List getProperties() {
        return properties;
    }

    public void addProperty(FiremawPropertyClass property) {
        this.properties.add(property);
    }

    public void addProperty(int index, FiremawPropertyClass property) {
        this.properties.add(index, property);
    }

    public void addPropertyRange(List propertyRange) {
        this.properties.addAll(propertyRange);
    }

    public void addPropertyRange(int index, List propertyRange) {
        this.properties.addAll(index, propertyRange);
    }

    public FiremawDto() {
        super();
        this.properties = new ArrayList();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy