org.oma.protocols.mlp.svc_init.EllipticalArea Maven / Gradle / Ivy
package org.oma.protocols.mlp.svc_init;
/**
* Schema fragment(s) for this class:
*
* <xs:element xmlns:ns="MLP_SVC_INIT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="EllipticalArea">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="ns:coord"/>
* <xs:element ref="ns:angle"/>
* <xs:element ref="ns:semiMajor"/>
* <xs:element ref="ns:semiMinor"/>
* <xs:element ref="ns:angularUnit" minOccurs="0"/>
* <xs:element ref="ns:distanceUnit" minOccurs="0"/>
* </xs:sequence>
* <xs:attribute type="xs:string" name="gid"/>
* <xs:attribute type="xs:string" name="srsName"/>
* </xs:complexType>
* </xs:element>
*
*/
public class EllipticalArea
{
private Coord coord;
private Angle angle;
private SemiMajor semiMajor;
private SemiMinor semiMinor;
private AngularUnit angularUnit;
private DistanceUnit distanceUnit;
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 'angle' element value.
*
* @return value
*/
public Angle getAngle() {
return angle;
}
/**
* Set the 'angle' element value.
*
* @param angle
*/
public void setAngle(Angle angle) {
this.angle = angle;
}
/**
* Get the 'semiMajor' element value.
*
* @return value
*/
public SemiMajor getSemiMajor() {
return semiMajor;
}
/**
* Set the 'semiMajor' element value.
*
* @param semiMajor
*/
public void setSemiMajor(SemiMajor semiMajor) {
this.semiMajor = semiMajor;
}
/**
* Get the 'semiMinor' element value.
*
* @return value
*/
public SemiMinor getSemiMinor() {
return semiMinor;
}
/**
* Set the 'semiMinor' element value.
*
* @param semiMinor
*/
public void setSemiMinor(SemiMinor semiMinor) {
this.semiMinor = semiMinor;
}
/**
* Get the 'angularUnit' element value.
*
* @return value
*/
public AngularUnit getAngularUnit() {
return angularUnit;
}
/**
* Set the 'angularUnit' element value.
*
* @param angularUnit
*/
public void setAngularUnit(AngularUnit angularUnit) {
this.angularUnit = angularUnit;
}
/**
* Get the 'distanceUnit' element value.
*
* @return value
*/
public DistanceUnit getDistanceUnit() {
return distanceUnit;
}
/**
* Set the 'distanceUnit' element value.
*
* @param distanceUnit
*/
public void setDistanceUnit(DistanceUnit distanceUnit) {
this.distanceUnit = distanceUnit;
}
/**
* 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