package com.jsonde.client.domain;
public class MethodCall extends AbstractMethodCall {
private Long actualClassId;
/*private boolean returnValue;
private boolean throwException;
private long executionTime;
public transient long invocationCount;*/
public Long getActualClassId() {
return actualClassId;
}
public void setActualClassId(Long actualClassId) {
this.actualClassId = actualClassId;
}
/*public boolean isReturnValue() {
return returnValue;
}
public void setReturnValue(boolean returnValue) {
this.returnValue = returnValue;
}
public boolean isThrowException() {
return throwException;
}
public void setThrowException(boolean throwException) {
this.throwException = throwException;
}
public long getExecutionTime() {
return executionTime;
}
public void setExecutionTime(long executionTime) {
this.executionTime = executionTime;
}*/
@Override
public String toString() {
return "MethodCall{" +
"actualClassId=" + actualClassId +
"} " + super.toString();
}
}