📄 wcscoverageinfobrief.java
字号:
/**
*
*/
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -