📄 wfsweblayerinfo.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 + -