blob: ad54fe98c94d71ed354a57174c42b60dd1c5cf36 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 EfficiOS Inc., Jonathan Rajotte-Julien
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.internal.provisional.analysis.lami.ui.viewers;
import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
import java.math.BigDecimal;
/**
* BigDecimal based range representation
*
* @author Jonathan Rajotte-Julien
*/
public class LamiGraphRange {
private final BigDecimal fMinimum;
private final BigDecimal fMaximum;
private final BigDecimal fRange;
/**
* Constructor
*
* @param minimum
* The minimum value of the range
* @param maximum
* The maximum value of the range
*/
public LamiGraphRange(BigDecimal minimum, BigDecimal maximum) {
fMinimum = minimum;
fMaximum = maximum;
fRange = checkNotNull(maximum.subtract(minimum));
}
/**
* @return the minimum value of the range
*/
public BigDecimal getMinimum() {
return fMinimum;
}
/**
* @return the maximum value of the range
*/
public BigDecimal getMaximum() {
return fMaximum;
}
/**
* @return the range delta
*/
public BigDecimal getDelta() {
return fRange;
}
}