blob: 34a8538571548ea7b34f1d8fa70077b6eb3b5f8a [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David LOPEZ BETANCUR (CEA LIST)
* Sebastien REVOL (CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.xygraph.mapping.common;
import org.eclipse.papyrus.moka.xygraph.mapping.util.DataBatch;
import org.eclipse.papyrus.moka.xygraph.mapping.util.TraceDataBounds;
import org.eclipse.papyrus.moka.xygraph.model.xygraph.TraceDescriptor;
public interface XYGraphDataBinder {
void addTraceSample(TraceDescriptor tDesc, double x, double y);
void setTraceData(TraceDescriptor tDesc, DataBatch x, DataBatch y);
TraceDataBounds getTraceDataBounds(TraceDescriptor tDesc);
}