Package org.eclipse.epsilon.profiling
Class ProfilerTargetSummary
- java.lang.Object
-
- org.eclipse.epsilon.profiling.ProfilerTargetSummary
-
public class ProfilerTargetSummary extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected long
executionCount
protected ExecutionTime
executionTime
protected int
index
protected String
name
-
Constructor Summary
Constructors Constructor Description ProfilerTargetSummary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getExecutionCount()
ExecutionTime
getExecutionTime()
int
getIndex()
String
getName()
void
setExecutionCount(long executionCount)
void
setExecutionTime(ExecutionTime executionTime)
void
setIndex(int index)
void
setName(String name)
-
-
-
Field Detail
-
index
protected int index
-
name
protected String name
-
executionCount
protected long executionCount
-
executionTime
protected ExecutionTime executionTime
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getIndex
public int getIndex()
-
setIndex
public void setIndex(int index)
-
getExecutionCount
public long getExecutionCount()
-
setExecutionCount
public void setExecutionCount(long executionCount)
-
getExecutionTime
public ExecutionTime getExecutionTime()
-
setExecutionTime
public void setExecutionTime(ExecutionTime executionTime)
-
-