帆软报表设计器源代码。
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.
 
 
 
 

29 lines
529 B

package com.fr.design.mainframe.alphafine.search;
import com.fr.design.mainframe.alphafine.preview.DefaultContentPane;
/**
* @author hades
* @version 11.0
* Created by hades on 2022/4/17
*/
public interface SearchManager {
/**
* 搜索
* */
void doSearch(SearchTextBean searchTextBean);
/**
* 展示默认内容
* */
default void showDefault(DefaultContentPane defaultContentPane) {
};
boolean hasSearchResult();
boolean isSearchOver();
boolean isNetWorkError();
}