blob: 3a1cf50345482dc4abc554bfe904d5126b26e910 [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 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David LOPEZ BETANCUR (CEA LIST)
* Sebastien REVOL (CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.datavisualization.service;
import org.eclipse.papyrus.moka.xygraph.mapping.common.Variable;
public class VariableDataInformation {
private Variable variable;
private long lastUpdateTime;
public VariableDataInformation() {
super();
}
public VariableDataInformation(Variable variable, long lastUpdateTime) {
super();
this.variable = variable;
this.lastUpdateTime = lastUpdateTime;
}
public Variable getVariable() {
return variable;
}
public void setVariable(Variable variable) {
this.variable = variable;
}
public long getLastUpdateTime() {
return lastUpdateTime;
}
public void setLastUpdateTime(long lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
}