public class ProjectionType extends Object
Java class for projection complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="projection"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="entry" type="{http://josm.openstreetmap.de/wms-cache}entry" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="cache-directory" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
cacheDirectory |
protected List<EntryType> |
entry |
protected String |
name |
Constructor and Description |
---|
ProjectionType() |
Modifier and Type | Method and Description |
---|---|
String |
getCacheDirectory()
Gets the value of the cacheDirectory property.
|
List<EntryType> |
getEntry()
Gets the value of the entry property.
|
String |
getName()
Gets the value of the name property.
|
void |
setCacheDirectory(String value)
Sets the value of the cacheDirectory property.
|
void |
setName(String value)
Sets the value of the name property.
|
protected String cacheDirectory
public ProjectionType()
public List<EntryType> getEntry()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set
method for the entry property.
For example, to add a new item, do as follows:
getEntry().add(newItem);
Objects of the following type(s) are allowed in the list
EntryType
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getCacheDirectory()
String
public void setCacheDirectory(String value)
value
- allowed object is
String