⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iresulthighlighter.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 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 + -