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

📄 wfsweblayerinfo.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.web.wfs.data;

import com.esri.adf.web.data.WebLayerInfo;
import com.esri.solutions.jitk.datasources.ogc.wfs.FeatureType;
import com.esri.solutions.jitk.datasources.ogc.wfs.FeatureTypeDescription;

/**
 * The layer information that describes the feature type associated with the
 * WFS layer. Extends from {@link WebLayerInfo}
 */
public class WFSWebLayerInfo extends WebLayerInfo {
	private static final long serialVersionUID = 7542746578557397826L;
	protected FeatureType _ft = null;
	protected FeatureTypeDescription _ftd = null;
	
	public WFSWebLayerInfo() {
		super();
	}

	/**
	 * Returns the {@link FeatureType} reference for this WFS layer. The FeatureType includes the
	 * name of the FeatureType, and array of {@link FeatureElement} (Field Definitions)
	 * and the shape column (if one exists).
	 * @return The {@link FeatureType} reference for the layer.
	 */
	public FeatureType getFeatureType() {
		return _ft;
	}

	public void setFeatureType(FeatureType _ft) {
		this._ft = _ft;
	}

	/**
	 * Returns the {@link FeatureTypeDescription} of the WFS feature type associated
	 * to the WFS layer.
	 * @return The {@link FeatureTypeDescription} reference for the layer.
	 */
	public FeatureTypeDescription getFeatureTypeDescription() {
		return _ftd;
	}

	public void setFeatureTypeDescription(FeatureTypeDescription _ftd) {
		this._ftd = _ftd;
	}
}

⌨️ 快捷键说明

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