source: josm/trunk/src/org/openstreetmap/josm/data/imagery/types/ProjectionType.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: 3.3 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.ArrayList;
12import java.util.List;
13import javax.xml.bind.annotation.XmlAccessType;
14import javax.xml.bind.annotation.XmlAccessorType;
15import javax.xml.bind.annotation.XmlAttribute;
16import javax.xml.bind.annotation.XmlType;
17
18
19/**
20 * <p>Java class for projection complex type.
21 *
22 * <p>The following schema fragment specifies the expected content contained within this class.
23 *
24 * <pre>
25 * &lt;complexType name="projection">
26 * &lt;complexContent>
27 * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28 * &lt;sequence>
29 * &lt;element name="entry" type="{http://josm.openstreetmap.de/wms-cache}entry" maxOccurs="unbounded" minOccurs="0"/>
30 * &lt;/sequence>
31 * &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
32 * &lt;attribute name="cache-directory" type="{http://www.w3.org/2001/XMLSchema}string" />
33 * &lt;/restriction>
34 * &lt;/complexContent>
35 * &lt;/complexType>
36 * </pre>
37 *
38 *
39 */
40@XmlAccessorType(XmlAccessType.FIELD)
41@XmlType(name = "projection", propOrder = {
42 "entry"
43})
44public class ProjectionType {
45
46 protected List<EntryType> entry;
47 @XmlAttribute
48 protected String name;
49 @XmlAttribute(name = "cache-directory")
50 protected String cacheDirectory;
51
52 /**
53 * Gets the value of the entry property.
54 *
55 * <p>
56 * This accessor method returns a reference to the live list,
57 * not a snapshot. Therefore any modification you make to the
58 * returned list will be present inside the JAXB object.
59 * This is why there is not a <CODE>set</CODE> method for the entry property.
60 *
61 * <p>
62 * For example, to add a new item, do as follows:
63 * <pre>
64 * getEntry().add(newItem);
65 * </pre>
66 *
67 *
68 * <p>
69 * Objects of the following type(s) are allowed in the list
70 * {@link EntryType }
71 *
72 *
73 */
74 public List<EntryType> getEntry() {
75 if (entry == null) {
76 entry = new ArrayList<EntryType>();
77 }
78 return this.entry;
79 }
80
81 /**
82 * Gets the value of the name property.
83 *
84 * @return
85 * possible object is
86 * {@link String }
87 *
88 */
89 public String getName() {
90 return name;
91 }
92
93 /**
94 * Sets the value of the name property.
95 *
96 * @param value
97 * allowed object is
98 * {@link String }
99 *
100 */
101 public void setName(String value) {
102 this.name = value;
103 }
104
105 /**
106 * Gets the value of the cacheDirectory property.
107 *
108 * @return
109 * possible object is
110 * {@link String }
111 *
112 */
113 public String getCacheDirectory() {
114 return cacheDirectory;
115 }
116
117 /**
118 * Sets the value of the cacheDirectory property.
119 *
120 * @param value
121 * allowed object is
122 * {@link String }
123 *
124 */
125 public void setCacheDirectory(String value) {
126 this.cacheDirectory = value;
127 }
128
129}
Note: See TracBrowser for help on using the repository browser.