com.fastchar.extjs.interfaces.IFastImportData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.
package com.fastchar.extjs.interfaces;
import com.fastchar.core.FastEntity;
import com.fastchar.core.FastHandler;
import java.util.List;
public interface IFastImportData {
void onBeforeImportData(List extends FastEntity> dataList, FastHandler handler) throws Exception;
void onAfterImportData(List extends FastEntity> dataList, FastHandler handler) throws Exception;
}