com.droidlogix.dbflare.datahandler.models.ResultInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbflare-datahandler Show documentation
Show all versions of dbflare-datahandler Show documentation
Entity Datahandler Repository
The newest version!
package com.droidlogix.dbflare.datahandler.models;
public class ResultInfo implements IResultInfo
{
private long total;
private long dbExecutionTime;
@Override
public long getTotal()
{
return total;
}
@Override
public void setTotal(long total)
{
this.total = total;
}
@Override
public long getDbExecutionTime()
{
return dbExecutionTime;
}
@Override
public void setDbExecutionTime(long dbExecutionTime)
{
this.dbExecutionTime = dbExecutionTime;
}
}