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

com.netgrif.application.engine.petrinet.domain.dataset.StringCollectionField.groovy Maven / Gradle / Ivy

package com.netgrif.application.engine.petrinet.domain.dataset

class StringCollectionField extends Field> {

    StringCollectionField() {
        super()
        this.defaultValue = new ArrayList<>()
    }

    @Override
    FieldType getType() {
        return FieldType.STRING_COLLECTION
    }

    @Override
    void clearValue() {
        this.setValue(new ArrayList())
    }

    @Override
    Field clone() {
        StringCollectionField clone = new StringCollectionField()
        super.clone(clone)
        return clone
    }

    void setDefaultValue(List defaultValue) {
        super.setDefaultValue(defaultValue)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy