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

org.yamcs.xtce.MathAlgorithm Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.xtce;

public class MathAlgorithm extends Algorithm {
    private static final long serialVersionUID = 1L;
    TriggeredMathOperation operation;
    
    public MathAlgorithm(String name) {
        super(name);
    }

    public void setMathOperation(TriggeredMathOperation mo) {
        this.operation = mo;
    }

    public MathOperation getOperation() {
        return operation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy