?? myagscustomqueryfunctionality.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 + -