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

📄 querybuildertask.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
📖 第 1 页 / 共 5 页
字号:

    /**
     * Set input layer label
     */
    public void setInputLayerLabel(String inputLayerLabel) {
        this.inputLayerLabel = inputLayerLabel;
    }

    /**
     * Get attribute selection label
     */
    public String getAttributeSelectionLabel() {
        return this.attributeSelectionLabel;
    }

    /**
     * Set attribute selection label
     */
    public void setAttributeSelectionLabel(String attributeSelectionLabel) {
        this.attributeSelectionLabel = attributeSelectionLabel;
    }

    /**
     * Get add to query expression label
     */
    public String getAddToQueryExpressionLabel() {
        return this.addToQueryExpressionLabel;
    }

    /**
     * Set add to query expression label
     */
    public void setAddToQueryExpressionLabel(String addToQueryExpressionLabel) {
        this.addToQueryExpressionLabel = addToQueryExpressionLabel;
    }

    /**
     * Get query expression label
     */
    public String getQueryExpressionLabel() {
        return this.queryExpressionLabel;
    }

    /**
     * Set query expression label
     */
    public void setQueryExpressionLabel(String queryExpressionLabel) {
        this.queryExpressionLabel = queryExpressionLabel;
    }

    /**
     * Get location to query label
     */
    public String getLocationToQueryLabel() {
        return this.locationToQueryLabel;
    }

    /**
     * Set location to query label
     */
    public void setLocationToQueryLabel(String locationToQueryLabel) {
        this.locationToQueryLabel = locationToQueryLabel;
    }

    /**
     * Get message label
     */
    public String getMessageLabel() {
        return this.messageLabel;
    }

    /**
     * Set message label
     */
    public void setMessageLabel(String messageLabel) {
        this.messageLabel = messageLabel;
    }

    /**
     * Get ui message 1
     */
    public String getUiMessage1() {
        return this.uiMessage1;
    }

    /**
     * Set ui message 1
     */
    public void setUiMessage1(String uiMessage1) {
        this.uiMessage1 = uiMessage1;
    }

    /**
     * Get ui message 2
     */
    public String getUiMessage2() {
        return this.uiMessage2;
    }

    /**
     * Set ui message 2
     */
    public void setUiMessage2(String uiMessage2) {
        this.uiMessage2 = uiMessage2;
    }

    /**
     * Get ui message 3
     */
    public String getUiMessage3() {
        return this.uiMessage3;
    }

    /**
     * Set ui message 3
     */
    public void setUiMessage3(String uiMessage3) {
        this.uiMessage3 = uiMessage3;
    }

    /**
     * Get ui message 4
     */
    public String getUiMessage4() {
        return this.uiMessage4;
    }

    /**
     * Set ui message 4
     */
    public void setUiMessage4(String uiMessage4) {
        this.uiMessage4 = uiMessage4;
    }

    /**
     * Get ui message 5
     */
    public String getUiMessage5() {
        return this.uiMessage5;
    }

    /**
     * Set ui message 5
     */
    public void setUiMessage5(String uiMessage5) {
        this.uiMessage5 = uiMessage5;
    }

    /**
     * Get selected layer
     */
    public String getLayer() {
        return this.layer;
    }

    /**
     * Set selected layer
     */
    public void setLayer(String layer) {
        this.layer = layer;
        doSelectLayer(null);

        // set the layer name
        String layername = this.layerList.get(layer);
        this.setLayerName(layername);
    }

    /**
     * Get selected layer name
     */
    public String getLayerName() {
        return this.layerName;
    }

    /**
     * Set selected layer name
     */
    private void setLayerName(String layer) {
        this.layerName = layer;
    }

    /**
     * Get spatial layer
     */
    public String getSpatialLayer() {
        return this.spatialLayer;
    }

    /**
     * Set spatial layer
     */
    public void setSpatialLayer(String spatialLayer) {
        this.spatialLayer = spatialLayer;
    }

    /**
     * Get text value
     */
    public String getTextValue() {
        return this.textValue;
    }

    /**
     * Set text value
     */
    public void setTextValue(String textValue) {
        this.textValue = textValue;
    }

    /**
     * Get attribute
     */
    public String getAttribute() {
        return this.attribute;
    }

    /**
     * Set attribute
     */
    public void setAttribute(String attribute) {
        this.attribute = attribute;
    }

    /**
     * Get operation
     */
    public String getOperation() {
        return this.operation;
    }

    /**
     * Set operation
     */
    public void setOperation(String operation) {
        this.operation = operation;
    }

    /**
     * Get spatial operation
     */
    public String getSpatialOperation() {
        return this.spatialOperation;
    }

    /**
     * Set spatial operation
     */
    public void setSpatialOperation(String spatialOperation) {
        this.spatialOperation = spatialOperation;
    }

    /**
     * Get domain value
     */
    public String getDomainValue() {
        return this.domainValue;
    }

    /**
     * Set domain value
     */
    public void setDomainValue(String domainValue) {
        this.domainValue = domainValue;
    }

    /**
     * Get sql where clause
     */
    public String getSql() {
        return this.sql;
    }

    /**
     * Set sql where clause
     */
    public void setSql(String sql) {
        this.sql = sql;
    }

    /**
     * Get input layer list
     */
    public Map<String, String> getInputLayerList() {
        return this.layerList;
    }

    /**
     * Get spatial layer list
     */
    public Map<String, String> getSpatialLayerList() {
        return this.spatialLayerList;
    }

    /**
     * Get attribute list
     */
    public Map<String, String> getAttributeList() {
        return this.attributeList;
    }

    /**
     * Set attribute list
     */
    public void setAttributeList(LinkedHashMap<String, String> attributeList) {
        this.attributeList = attributeList;
    }

    /**
     * Set attribute selection
     */
    public void setAttributeSelection(String attributeSelection) {
        this.attributeSelection = attributeSelection;
    }

    /**
     * Get attribute selection
     */
    public String getAttributeSelection() {
        return this.attributeSelection;
    }

    /**
     * Set spatial filter selection
     */
    public void setSpatialFilterSelection(String spatialFilterSelection) {
        this.spatialFilterSelection = spatialFilterSelection;
    }

    /**
     * Get spatial filter selection
     */
    public String getSpatialFilterSelection() {
        return this.spatialFilterSelection;
    }

    /**
     * Get operation list
     */
    public Map<String, String> getOperationList() {
        LogicalOpListBuilder lolb = new LogicalOpListBuilder(this.taskInfo.getResourceBundle());
        this.operationList = lolb.getOperationList();

        return this.operationList;
    }

    /**
     * Get spatial operation list
     */
    public Map<String, String> getSpatialOperationList() {
        SpatialOpListBuilder solb = new SpatialOpListBuilder(this.taskInfo.getResourceBundle());
        this.spatialOperationList = solb.getOperationList();

        return this.spatialOperationList;
    }

    /**
     * Get domain value list
     */
    public Map<String, String> getDomainValueList() {
        if (this.domainValueList == null) {
            resetDomainValueList();
        }

        return this.domainValueList;
    }

    /**
     * Helper method to reset the Domain Value list so that
     * it is initialized with the proper No Values option.
     */
    private void resetDomainValueList() {
        this.domainValueList = new LinkedHashMap<String, String>();
        this.domainValueList.put("",
            TextResources.getResourceString(ResourceProps.NO_VALUES));
    }

    public String getPointMarkerParam() {
        return this._pointMarkerParam;
    }

    public void setPointMarkerParam(String pointMarkerParam) {
        this._pointMarkerParam = pointMarkerParam;
    }

    public String getPointColorParam() {
        return this._pointColorParam;
    }

    public void setPointColorParam(String pointColorParam) {
        this._pointColorParam = pointColorParam;
    }

    public String getPointSizeParam() {
        return this._pointSizeParam;

⌨️ 快捷键说明

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