📄 iresulthighlighter.java
字号:
package com.esri.solutions.jitk.web.data.results.highlight;
import com.esri.adf.web.data.query.QueryResult;
import java.util.List;
/**
* Interface used by tasks to highlight requests. Implementation is
* injected via faces-config.xml files for each task.
*
*/
public interface IResultHighlighter {
/**
* Tasks that return results will call this method to highlight results.
* @param results The results to highlight.
*/
public void highlightResults(List<QueryResult> results);
/**
* Sets the mode of the highlighter to either clear the previous results
* or not.
* @param clear If set to true, previous results are cleared.
*/
public void setClearPreviousResults(boolean clear);
/**
* Returns the mode of the highlighter, whether its configured to clear
* previous results or not.
* @return
*/
public boolean getClearPreviousResults();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -