source: josm/trunk/src/org/openstreetmap/josm/data/imagery/types/EntryType.java@ 4067

Last change on this file since 4067 was 4065, checked in by jttt, 13 years ago

Improved wms cache

  • files saved in original format (no need to recode to png)
  • possibility to tile with different pos/ppd that overlaps current tile
  • Property svn:mime-type set to text/plain
File size: 4.6 KB
Line 
1//
2// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
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: 2011.01.09 at 07:33:18 PM CET
6//
7
8
9package org.openstreetmap.josm.data.imagery.types;
10
11import java.util.Calendar;
12
13import javax.xml.bind.annotation.XmlAccessType;
14import javax.xml.bind.annotation.XmlAccessorType;
15import javax.xml.bind.annotation.XmlElement;
16import javax.xml.bind.annotation.XmlSchemaType;
17import javax.xml.bind.annotation.XmlType;
18import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
19
20
21/**
22 * <p>Java class for entry complex type.
23 *
24 * <p>The following schema fragment specifies the expected content contained within this class.
25 *
26 * <pre>
27 * &lt;complexType name="entry">
28 * &lt;complexContent>
29 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
30 * &lt;sequence>
31 * &lt;element name="pixelPerDegree" type="{http://www.w3.org/2001/XMLSchema}double"/>
32 * &lt;element name="east" type="{http://www.w3.org/2001/XMLSchema}double"/>
33 * &lt;element name="north" type="{http://www.w3.org/2001/XMLSchema}double"/>
34 * &lt;element name="lastUsed" type="{http://www.w3.org/2001/XMLSchema}date"/>
35 * &lt;element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}date"/>
36 * &lt;element name="filename" type="{http://www.w3.org/2001/XMLSchema}string"/>
37 * &lt;/sequence>
38 * &lt;/restriction>
39 * &lt;/complexContent>
40 * &lt;/complexType>
41 * </pre>
42 *
43 *
44 */
45@XmlAccessorType(XmlAccessType.FIELD)
46@XmlType(name = "entry", propOrder = {
47 "pixelPerDegree",
48 "east",
49 "north",
50 "lastUsed",
51 "lastModified",
52 "filename"
53})
54public class EntryType {
55
56 protected double pixelPerDegree;
57 protected double east;
58 protected double north;
59 @XmlElement(required = true, type = String.class)
60 @XmlJavaTypeAdapter(Adapter1 .class)
61 @XmlSchemaType(name = "date")
62 protected Calendar lastUsed;
63 @XmlElement(required = true, type = String.class)
64 @XmlJavaTypeAdapter(Adapter1 .class)
65 @XmlSchemaType(name = "date")
66 protected Calendar lastModified;
67 @XmlElement(required = true)
68 protected String filename;
69
70 /**
71 * Gets the value of the pixelPerDegree property.
72 *
73 */
74 public double getPixelPerDegree() {
75 return pixelPerDegree;
76 }
77
78 /**
79 * Sets the value of the pixelPerDegree property.
80 *
81 */
82 public void setPixelPerDegree(double value) {
83 this.pixelPerDegree = value;
84 }
85
86 /**
87 * Gets the value of the east property.
88 *
89 */
90 public double getEast() {
91 return east;
92 }
93
94 /**
95 * Sets the value of the east property.
96 *
97 */
98 public void setEast(double value) {
99 this.east = value;
100 }
101
102 /**
103 * Gets the value of the north property.
104 *
105 */
106 public double getNorth() {
107 return north;
108 }
109
110 /**
111 * Sets the value of the north property.
112 *
113 */
114 public void setNorth(double value) {
115 this.north = value;
116 }
117
118 /**
119 * Gets the value of the lastUsed property.
120 *
121 * @return
122 * possible object is
123 * {@link String }
124 *
125 */
126 public Calendar getLastUsed() {
127 return lastUsed;
128 }
129
130 /**
131 * Sets the value of the lastUsed property.
132 *
133 * @param value
134 * allowed object is
135 * {@link String }
136 *
137 */
138 public void setLastUsed(Calendar value) {
139 this.lastUsed = value;
140 }
141
142 /**
143 * Gets the value of the lastModified property.
144 *
145 * @return
146 * possible object is
147 * {@link String }
148 *
149 */
150 public Calendar getLastModified() {
151 return lastModified;
152 }
153
154 /**
155 * Sets the value of the lastModified property.
156 *
157 * @param value
158 * allowed object is
159 * {@link String }
160 *
161 */
162 public void setLastModified(Calendar value) {
163 this.lastModified = value;
164 }
165
166 /**
167 * Gets the value of the filename property.
168 *
169 * @return
170 * possible object is
171 * {@link String }
172 *
173 */
174 public String getFilename() {
175 return filename;
176 }
177
178 /**
179 * Sets the value of the filename property.
180 *
181 * @param value
182 * allowed object is
183 * {@link String }
184 *
185 */
186 public void setFilename(String value) {
187 this.filename = value;
188 }
189
190}
Note: See TracBrowser for help on using the repository browser.