📄 coverageinfodto.java
字号:
* setDirName purpose.
*
* <p>
* Description ...
* </p>
*
* @param string
*
* @uml.property name="dirName"
*/
public void setDirName(String string) {
dirName = string;
}
public String toString() {
return "[CoverageInfoDTO: " + name + ", formatId: " + formatId + ", envelope: " + envelope
+ "\n SRS: " + srsName + ", dirName: " + dirName + ", label: " + label
+ "\n description: " + description;
}
/**
* @return Returns the description.
*
* @uml.property name="description"
*/
public String getDescription() {
return description;
}
/**
* @param description
* The description to set.
*
* @uml.property name="description"
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return Returns the formatId.
*
* @uml.property name="formatId"
*/
public String getFormatId() {
return formatId;
}
/**
* @param formatId
* The formatId to set.
*
* @uml.property name="formatId"
*/
public void setFormatId(String formatId) {
this.formatId = formatId;
}
/**
* @return Returns the label.
*
* @uml.property name="label"
*/
public String getLabel() {
return label;
}
/**
* @param label
* The label to set.
*
* @uml.property name="label"
*/
public void setLabel(String label) {
this.label = label;
}
/**
* @return Returns the metadataLink.
*
* @uml.property name="metadataLink"
*/
public MetaDataLink getMetadataLink() {
return metadataLink;
}
/**
* @param metadataLink
* The metadataLink to set.
*
* @uml.property name="metadataLink"
*/
public void setMetadataLink(MetaDataLink metadataLink) {
this.metadataLink = metadataLink;
}
/**
* @return Returns the defaultInterpolationMethod.
*
* @uml.property name="defaultInterpolationMethod"
*/
public String getDefaultInterpolationMethod() {
return defaultInterpolationMethod;
}
/**
* @param defaultInterpolationMethod
* The defaultInterpolationMethod to set.
*
* @uml.property name="defaultInterpolationMethod"
*/
public void setDefaultInterpolationMethod(String defaultInterpolationMethod) {
this.defaultInterpolationMethod = defaultInterpolationMethod;
}
/**
* @return Returns the envelope.
*
* @uml.property name="envelope"
*/
public GeneralEnvelope getEnvelope() {
return envelope;
}
/**
* @param envelope
* The envelope to set.
*
* @uml.property name="envelope"
*/
public void setEnvelope(GeneralEnvelope envelope) {
this.envelope = envelope;
}
/**
* @return Returns the interpolationMethods.
*
* @uml.property name="interpolationMethods"
*/
public List getInterpolationMethods() {
return interpolationMethods;
}
/**
* @param interpolationMethods
* The interpolationMethods to set.
*
* @uml.property name="interpolationMethods"
*/
public void setInterpolationMethods(List interpolationMethods) {
this.interpolationMethods = interpolationMethods;
}
/**
* @return Returns the nativeFormat.
*
* @uml.property name="nativeFormat"
*/
public String getNativeFormat() {
return nativeFormat;
}
/**
* @param nativeFormat
* The nativeFormat to set.
*
* @uml.property name="nativeFormat"
*/
public void setNativeFormat(String nativeFormat) {
this.nativeFormat = nativeFormat;
}
/**
* @return Returns the requestCRSs.
*
* @uml.property name="requestCRSs"
*/
public List getRequestCRSs() {
return requestCRSs;
}
/**
* @param requestCRSs
* The requestCRSs to set.
*
* @uml.property name="requestCRSs"
*/
public void setRequestCRSs(List requestCRSs) {
this.requestCRSs = requestCRSs;
}
/**
* @return Returns the responseCRSs.
*
* @uml.property name="responseCRSs"
*/
public List getResponseCRSs() {
return responseCRSs;
}
/**
* @param responseCRSs
* The responseCRSs to set.
*
* @uml.property name="responseCRSs"
*/
public void setResponseCRSs(List responseCRSs) {
this.responseCRSs = responseCRSs;
}
/**
* @return Returns the srsName.
*
* @uml.property name="srsName"
*/
public String getSrsName() {
return srsName;
}
/**
* @param srsName
* The srsName to set.
*
* @uml.property name="srsName"
*/
public void setSrsName(String srsName) {
this.srsName = srsName;
}
/**
* @return Returns the supportedFormats.
*
* @uml.property name="supportedFormats"
*/
public List getSupportedFormats() {
return supportedFormats;
}
/**
* @param supportedFormats
* The supportedFormats to set.
*
* @uml.property name="supportedFormats"
*/
public void setSupportedFormats(List supportedFormats) {
this.supportedFormats = supportedFormats;
}
/**
* getDefaultStyle purpose.
*
* <p>
* Description ...
* </p>
*
* @return
*
* @uml.property name="defaultStyle"
*/
public String getDefaultStyle() {
// HACK: So our UI doesn't seem to allow the setting of styles or
// default styles or anything, despite the fact that shit chokes when
// none
// is present. This is making it so the beta release can not have any
// data
// stores added to it. This is a hacky ass way to get around it, just
// write out a normal style if it is null. This can obviously be done
// better, and I have no idea why this default style shit is required -
// wfs
// does not care about a style. Should be able to seamlessly at least do
// something for wms.
if ((defaultStyle == null) || defaultStyle.equals("")) {
defaultStyle = "raster";
}
return defaultStyle;
}
/**
* setDefaultStyle purpose.
*
* <p>
* Description ...
* </p>
*
* @param string
*
* @uml.property name="defaultStyle"
*/
public void setDefaultStyle(String string) {
defaultStyle = string;
}
/**
*
* @uml.property name="crs"
*/
public CoordinateReferenceSystem getCrs() {
return crs;
}
/**
*
* @uml.property name="crs"
*/
public void setCrs(CoordinateReferenceSystem crs) {
this.crs = crs;
}
/**
*
* @uml.property name="grid"
*/
public GridGeometry getGrid() {
return grid;
}
/**
*
* @uml.property name="grid"
*/
public void setGrid(GridGeometry grid) {
this.grid = grid;
}
/**
*
* @uml.property name="dimensionNames"
*/
public InternationalString[] getDimensionNames() {
return dimensionNames;
}
/**
*
* @uml.property name="dimensionNames"
*/
public void setDimensionNames(InternationalString[] dimentionNames) {
this.dimensionNames = dimentionNames;
}
/**
* @return Returns the dimensions.
*
* @uml.property name="dimensions"
*/
public CoverageDimension[] getDimensions() {
return dimensions;
}
/**
* @param dimensions
* The dimensions to set.
*
* @uml.property name="dimensions"
*/
public void setDimensions(CoverageDimension[] dimensions) {
this.dimensions = dimensions;
}
public String getSrsWKT() {
return srsWKT;
}
public void setSrsWKT(String srsWKT) {
this.srsWKT = srsWKT;
}
public GeneralEnvelope getLonLatWGS84Envelope() {
return lonLatWGS84Envelope;
}
public void setLonLatWGS84Envelope(GeneralEnvelope latLonEnvelope) {
this.lonLatWGS84Envelope = latLonEnvelope;
}
public String getWmsPath() {
return wmsPath;
}
public void setWmsPath(String wmsPath) {
this.wmsPath = wmsPath;
}
/**
* Handling multiple styles
*/
public ArrayList getStyles() {
return styles;
}
public void addStyle(String styleName) {
if (!styles.contains(styleName)) {
styles.add(styleName);
}
}
public void setStyles(ArrayList styles) {
this.styles = styles;
}
public Map getParameters() {
return parameters;
}
public synchronized void setParameters(Map parameters) {
this.parameters = parameters;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -