1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2019.02.11 at 04:29:56 PM CET
6 //
7 package org.datacite.schema.kernel_4;
8
9 import javax.xml.bind.annotation.XmlAccessType;
10 import javax.xml.bind.annotation.XmlAccessorType;
11 import javax.xml.bind.annotation.XmlType;
12
13 /**
14 * <p>
15 * Java class for point complex type.
16 *
17 * <p>
18 * The following schema fragment specifies the expected content contained within
19 * this class.
20 *
21 * <pre>
22 * <complexType name="point">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * <all>
26 * <element name="pointLongitude" type="{http://datacite.org/schema/kernel-4}longitudeType"/>
27 * <element name="pointLatitude" type="{http://datacite.org/schema/kernel-4}latitudeType"/>
28 * </all>
29 * </restriction>
30 * </complexContent>
31 * </complexType>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "point", propOrder = {})
38 public class Point {
39
40 protected float pointLongitude;
41 protected float pointLatitude;
42
43 /**
44 * Gets the value of the pointLongitude property.
45 *
46 * @return the longitude
47 */
48 public float getPointLongitude() {
49 return pointLongitude;
50 }
51
52 /**
53 * Sets the value of the pointLongitude property.
54 *
55 * @param value the longitude
56 */
57 public void setPointLongitude(float value) {
58 this.pointLongitude = value;
59 }
60
61 /**
62 * Gets the value of the pointLatitude property.
63 *
64 * @return the latitude
65 */
66 public float getPointLatitude() {
67 return pointLatitude;
68 }
69
70 /**
71 * Sets the value of the pointLatitude property.
72 *
73 * @param value the latitude
74 */
75 public void setPointLatitude(float value) {
76 this.pointLatitude = value;
77 }
78
79 }