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

org.yamcs.xtce.xml.XtceTerm Maven / Gradle / Ivy

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

public class XtceTerm {

    private int    exponent;
    private double coefficient;

    public int getExponent() {
        return exponent;
    }

    public double getCoefficient() {
        return coefficient;
    }

    public XtceTerm(int exponent, double coefficient) {
        this.exponent = exponent;
        this.coefficient = coefficient;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy