com.fastchar.extjs.acceptor.FastExtEntityAcceptor 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.Quickly build a background management system
package com.fastchar.extjs.acceptor;
import com.fastchar.core.FastEngine;
import com.fastchar.extjs.FastExtConfig;
import com.fastchar.extjs.core.FastExtEntity;
import com.fastchar.interfaces.IFastScannerAcceptor;
@SuppressWarnings("unchecked")
public class FastExtEntityAcceptor implements IFastScannerAcceptor {
@Override
public void onScannerClass(FastEngine engine, Class> scannedClass) throws Exception {
if (FastExtEntity.class.isAssignableFrom(scannedClass)) {
FastExtConfig.getInstance().getExtEntities().addEntity((Class extends FastExtEntity>>) scannedClass);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy