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

nl.uu.cs.ape.models.ConstraintTemplateData Maven / Gradle / Ivy

Go to download

APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.

There is a newer version: 2.3.0
Show newest version
package nl.uu.cs.ape.models;

import java.util.List;

import nl.uu.cs.ape.models.logic.constructs.TaxonomyPredicate;

/**
 * The {@link ConstraintTemplateData} class is used to store the data describing
 * each constrain.
 *
 * @author Vedran Kasalica
 */
public class ConstraintTemplateData {

    private String constraintID;
    private List parameters;

    /**
     * Instantiates a new Constraint template data.
     *
     * @param constraintID the constraint id
     * @param parameters   the parameters
     */
    public ConstraintTemplateData(String constraintID, List parameters) {
        this.constraintID = constraintID;
        this.parameters = parameters;
    }

    /**
     * Gets constraint id.
     *
     * @return The constraintID.
     */
    public String getConstraintID() {
        return constraintID;
    }

    /**
     * Gets parameters.
     *
     * @return The parameters.
     */
    public List getParameters() {
        return parameters;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy