Package net.wirelabs.jmaps.example.gpx
Class CopyrightType
- java.lang.Object
-
- net.wirelabs.jmaps.example.gpx.CopyrightType
-
public class CopyrightType extends Object
Information about the copyright holder and any license governing use of this file. By linking to an appropriate license, you may place your data into the public domain or grant additional usage rights.Java class for copyrightType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="copyrightType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="year" type="{http://www.w3.org/2001/XMLSchema}gYear" minOccurs="0"/> <element name="license" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/> </sequence> <attribute name="author" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description CopyrightType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAuthor()Gets the value of the author property.StringgetLicense()Gets the value of the license property.XMLGregorianCalendargetYear()Gets the value of the year property.voidsetAuthor(String value)Sets the value of the author property.voidsetLicense(String value)Sets the value of the license property.voidsetYear(XMLGregorianCalendar value)Sets the value of the year property.
-
-
-
Field Detail
-
year
protected XMLGregorianCalendar year
-
license
protected String license
-
author
protected String author
-
-
Method Detail
-
getYear
public XMLGregorianCalendar getYear()
Gets the value of the year property.- Returns:
- possible object is
XMLGregorianCalendar
-
setYear
public void setYear(XMLGregorianCalendar value)
Sets the value of the year property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getLicense
public String getLicense()
Gets the value of the license property.- Returns:
- possible object is
String
-
setLicense
public void setLicense(String value)
Sets the value of the license property.- Parameters:
value- allowed object isString
-
getAuthor
public String getAuthor()
Gets the value of the author property.- Returns:
- possible object is
String
-
-