org.oma.protocols.mlp.svc_result.LinearRing Maven / Gradle / Ivy
package org.oma.protocols.mlp.svc_result;
import java.util.ArrayList;
import java.util.List;
/**
* Schema fragment(s) for this class:
*
* <xs:element xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="LinearRing">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:coord"/>
* <xs:element ref="ns:coord"/>
* <xs:element ref="ns:coord"/>
* <xs:element ref="ns:coord" minOccurs="0" maxOccurs="unbounded"/>
* </xs:sequence>
* <xs:attribute type="xs:string" name="gid"/>
* <xs:attribute type="xs:string" name="srsName"/>
* </xs:complexType>
* </xs:element>
*
*/
public class LinearRing
{
private Coord coord;
private Coord coord1;
private Coord coord2;
private List coordList = new ArrayList();
private String gid;
private String srsName;
/**
* Get the 'coord' element value.
*
* @return value
*/
public Coord getCoord() {
return coord;
}
/**
* Set the 'coord' element value.
*
* @param coord
*/
public void setCoord(Coord coord) {
this.coord = coord;
}
/**
* Get the 'coord' element value.
*
* @return value
*/
public Coord getCoord1() {
return coord1;
}
/**
* Set the 'coord' element value.
*
* @param coord1
*/
public void setCoord1(Coord coord1) {
this.coord1 = coord1;
}
/**
* Get the 'coord' element value.
*
* @return value
*/
public Coord getCoord2() {
return coord2;
}
/**
* Set the 'coord' element value.
*
* @param coord2
*/
public void setCoord2(Coord coord2) {
this.coord2 = coord2;
}
/**
* Get the list of 'coord' element items.
*
* @return list
*/
public List getCoordList() {
return coordList;
}
/**
* Set the list of 'coord' element items.
*
* @param list
*/
public void setCoordList(List list) {
coordList = list;
}
/**
* Get the 'gid' attribute value.
*
* @return value
*/
public String getGid() {
return gid;
}
/**
* Set the 'gid' attribute value.
*
* @param gid
*/
public void setGid(String gid) {
this.gid = gid;
}
/**
* Get the 'srsName' attribute value.
*
* @return value
*/
public String getSrsName() {
return srsName;
}
/**
* Set the 'srsName' attribute value.
*
* @param srsName
*/
public void setSrsName(String srsName) {
this.srsName = srsName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy