org.openstreetmap.josm.data.imagery.types
Class WmsCacheType

java.lang.Object
  extended by org.openstreetmap.josm.data.imagery.types.WmsCacheType

public class WmsCacheType
extends java.lang.Object

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="projection" type="{http://josm.openstreetmap.de/wms-cache}projection" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="tileSize" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
       <attribute name="totalFileSize" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.util.List<ProjectionType> projection
           
protected  int tileSize
           
protected  int totalFileSize
           
 
Constructor Summary
WmsCacheType()
           
 
Method Summary
 java.util.List<ProjectionType> getProjection()
          Gets the value of the projection property.
 int getTileSize()
          Gets the value of the tileSize property.
 int getTotalFileSize()
          Gets the value of the totalFileSize property.
 void setTileSize(int value)
          Sets the value of the tileSize property.
 void setTotalFileSize(int value)
          Sets the value of the totalFileSize property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

projection

protected java.util.List<ProjectionType> projection

tileSize

protected int tileSize

totalFileSize

protected int totalFileSize
Constructor Detail

WmsCacheType

public WmsCacheType()
Method Detail

getProjection

public java.util.List<ProjectionType> getProjection()
Gets the value of the projection property.

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 projection property.

For example, to add a new item, do as follows:

    getProjection().add(newItem);
 

Objects of the following type(s) are allowed in the list ProjectionType


getTileSize

public int getTileSize()
Gets the value of the tileSize property.


setTileSize

public void setTileSize(int value)
Sets the value of the tileSize property.


getTotalFileSize

public int getTotalFileSize()
Gets the value of the totalFileSize property.


setTotalFileSize

public void setTotalFileSize(int value)
Sets the value of the totalFileSize property.



JOSM