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.
|
package com.fr.design.search; |
|
|
|
|
|
/** |
|
* 用于搜索RefreshableJTree数据的搜索器 |
|
* |
|
* @author Yvan |
|
*/ |
|
public interface TreeSearcher { |
|
|
|
/** |
|
* 开始搜索 |
|
* |
|
* @param text |
|
*/ |
|
void startSearch(String text); |
|
|
|
/** |
|
* 停止搜索 |
|
*/ |
|
void stopSearch(); |
|
|
|
/** |
|
* 搜索完成 |
|
*/ |
|
void completeSearch(); |
|
}
|
|
|