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

org.coode.oppl.function.SimpleValueComputationParameters Maven / Gradle / Ivy

package org.coode.oppl.function;

import static org.coode.oppl.utils.ArgCheck.checkNotNull;

import org.coode.oppl.ConstraintSystem;
import org.coode.oppl.bindingtree.BindingNode;
import org.coode.oppl.exceptions.RuntimeExceptionHandler;

/** @author Luigi Iannone */
public class SimpleValueComputationParameters implements ValueComputationParameters {
    private final ConstraintSystem constraintSystem;
    private final BindingNode bindingNode;
    private final RuntimeExceptionHandler runtimeExceptionHandler;

    /** @param constraintSystem
     *            constraintSystem
     * @param bindingNode
     *            bindingNode
     * @param runtimeExceptionHandler
     *            runtimeExceptionHandler */
    public SimpleValueComputationParameters(ConstraintSystem constraintSystem,
            BindingNode bindingNode, RuntimeExceptionHandler runtimeExceptionHandler) {
        this.constraintSystem = checkNotNull(constraintSystem, "constraintSystem");
        this.bindingNode = checkNotNull(bindingNode, "bindingNode");
        this.runtimeExceptionHandler = checkNotNull(runtimeExceptionHandler,
                "runtimeExceptionHandler");
    }

    @Override
    public BindingNode getBindingNode() {
        return bindingNode;
    }

    @Override
    public ConstraintSystem getConstraintSystem() {
        return constraintSystem;
    }

    /** @return the runtimeExceptionHandler */
    @Override
    public RuntimeExceptionHandler getRuntimeExceptionHandler() {
        return runtimeExceptionHandler;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy