com.droidlogix.dbflare.datahandler.models.IResultInfo 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 interface IResultInfo
{
long getTotal();
void setTotal(long total);
long getDbExecutionTime();
void setDbExecutionTime(long dbExecutionTime);
}