报表预览按需计算sheet内容。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
506 B

package com.fr.plugin.lazy.sheet;
import com.fr.plugin.lazy.sheet.fun.LazySheetActor;
import com.fr.report.fun.impl.AbstractActorProvider;
import com.fr.report.stable.fun.Actor;
/**
* Created by richie on 15/7/17.
*/
public class LazySheetActorBridge extends AbstractActorProvider {
@Override
public int currentAPILevel() {
return CURRENT_LEVEL;
}
@Override
public Actor[] createActor() {
return new Actor[]{
new LazySheetActor()
};
}
}