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

📄 myagscustomqueryfunctionality.java

📁 采用java实现的arcgis server程序
💻 JAVA
字号:
/*
 * Copyright (c) 2008 ESRI
 *
 * All rights reserved under the copyright laws of the United States
 * and applicable international laws, treaties, and conventions.
 *
 * You may freely redistribute and use this sample code, with or
 * without modification, provided you include the original copyright
 * notice and use restrictions.
 *
 * See use restrictions at <install>/ArcGIS/java/samples/userestrictions.
 */

package com.esri.adf.sample.criteria;

import java.util.logging.Logger;

import com.esri.adf.web.ags.data.query.AGSQueryFunctionality;

public class MyAGSCustomQueryFunctionality extends AGSQueryFunctionality {
  private static final long serialVersionUID = 1L;

  private static final Logger logger = Logger.getLogger(MyAGSCustomQueryFunctionality.class.getName());

  /*
   * Registers MyAGSCustomCriteriaHandler for the given criteriaType with this functionality.
   */
  public MyAGSCustomQueryFunctionality() {
    super();
    logger.fine("MyAGSQueryFunctionality.MyAGSQueryFunctionality");
    this.addFindCriteriaHandler(MyCustomCriteria.CRITERIA_TYPE, new MyAGSCustomCriteriaHandler());
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -