wcscoverageinfobrief.java

来自「esri的ArcGIS Server超级学习模板程序(for java)」· Java 代码 · 共 84 行

JAVA
84
字号
/**
 * 
 */
package com.esri.solutions.jitk.datasources.ogc.wcs.info;

import java.util.ArrayList;
import java.util.List;

/**
 * @author vlad2928
 *
 */
public class WCSCoverageInfoBrief {
	
	protected String id;
	protected String label;
	protected String description;
	protected WCSEnvelope envelope;
	protected List<String> keywords;
	
	public WCSCoverageInfoBrief() {	
		this.id = "";
		this.label = "";
		this.description = "";
		this.envelope = null;
		this.keywords = new ArrayList<String>();
	}
	
	public String getName() {
		return this.id;
	}
	
	public void setName(String name) {
		this.id = name;
	}
	
	public String getId() {
		return this.id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public String getLabel() {
		return this.label;
	}
	
	public void setLabel(String label) {
		this.label = label;
	}
	
	public String getDescription() {
		return this.description;
	}

	public void setDescription(String description) {
		this.description = description;
	}

	public WCSEnvelope getLonLatEnvelope() {
		return this.envelope;
	}
	
	public void setLonLatEnvelope(WCSEnvelope envelope) {
		this.envelope = envelope;
	}

	public List<String> getKeywords() {
		return this.keywords;
	}

	public void addKeyword(String keyword) {
		this.keywords.add(keyword);
	}

	public WCSEnvelope getEnvelope() {
		return this.envelope;
	}

	public void setEnvelope(WCSEnvelope envelope) {
		this.envelope = envelope;
	}
}

⌨️ 快捷键说明

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