blob: 6771718ac93be2dedaff1f19d6882ba7f9116275 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.profiling;
public class ExecutionTime {
protected long individual = 0;
protected long aggregate = 0;
public ExecutionTime() { }
public ExecutionTime(long individual, long aggregate) {
super();
this.individual = individual;
this.aggregate = aggregate;
}
public long getIndividual() {
return individual;
}
public long getAggregate() {
return aggregate;
}
public void setIndividual(long individual) {
this.individual = individual;
}
public void setAggregate(long aggregate) {
this.aggregate = aggregate;
}
}