Package iofXml.v2
Class ControlPosition
-
- All Implemented Interfaces:
public class ControlPosition
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="x" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="y" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> <attribute name="unit" default="m"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}token"> <enumeration value="m"/> <enumeration value="ft"/> <enumeration value="km"/> <enumeration value="WGS-84"/> <enumeration value="other"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ControlPosition()
-
Method Summary
Modifier and Type Method Description String
getX()
Gets the value of the x property. void
setX(String value)
Sets the value of the x property. String
getY()
Gets the value of the y property. void
setY(String value)
Sets the value of the y property. String
getUnit()
Gets the value of the unit property. void
setUnit(String value)
Sets the value of the unit property.
-