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

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

public class EntryType
extends java.lang.Object

Java class for entry complex type.

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

 <complexType name="entry">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="pixelPerDegree" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="east" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="north" type="{http://www.w3.org/2001/XMLSchema}double"/>
         <element name="lastUsed" type="{http://www.w3.org/2001/XMLSchema}date"/>
         <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}date"/>
         <element name="filename" type="{http://www.w3.org/2001/XMLSchema}string"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  double east
           
protected  java.lang.String filename
           
protected  java.util.Calendar lastModified
           
protected  java.util.Calendar lastUsed
           
protected  double north
           
protected  double pixelPerDegree
           
 
Constructor Summary
EntryType()
           
 
Method Summary
 double getEast()
          Gets the value of the east property.
 java.lang.String getFilename()
          Gets the value of the filename property.
 java.util.Calendar getLastModified()
          Gets the value of the lastModified property.
 java.util.Calendar getLastUsed()
          Gets the value of the lastUsed property.
 double getNorth()
          Gets the value of the north property.
 double getPixelPerDegree()
          Gets the value of the pixelPerDegree property.
 void setEast(double value)
          Sets the value of the east property.
 void setFilename(java.lang.String value)
          Sets the value of the filename property.
 void setLastModified(java.util.Calendar value)
          Sets the value of the lastModified property.
 void setLastUsed(java.util.Calendar value)
          Sets the value of the lastUsed property.
 void setNorth(double value)
          Sets the value of the north property.
 void setPixelPerDegree(double value)
          Sets the value of the pixelPerDegree property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

pixelPerDegree

protected double pixelPerDegree

east

protected double east

north

protected double north

lastUsed

protected java.util.Calendar lastUsed

lastModified

protected java.util.Calendar lastModified

filename

protected java.lang.String filename
Constructor Detail

EntryType

public EntryType()
Method Detail

getPixelPerDegree

public double getPixelPerDegree()
Gets the value of the pixelPerDegree property.


setPixelPerDegree

public void setPixelPerDegree(double value)
Sets the value of the pixelPerDegree property.


getEast

public double getEast()
Gets the value of the east property.


setEast

public void setEast(double value)
Sets the value of the east property.


getNorth

public double getNorth()
Gets the value of the north property.


setNorth

public void setNorth(double value)
Sets the value of the north property.


getLastUsed

public java.util.Calendar getLastUsed()
Gets the value of the lastUsed property.

Returns:
possible object is String

setLastUsed

public void setLastUsed(java.util.Calendar value)
Sets the value of the lastUsed property.

Parameters:
value - allowed object is String

getLastModified

public java.util.Calendar getLastModified()
Gets the value of the lastModified property.

Returns:
possible object is String

setLastModified

public void setLastModified(java.util.Calendar value)
Sets the value of the lastModified property.

Parameters:
value - allowed object is String

getFilename

public java.lang.String getFilename()
Gets the value of the filename property.

Returns:
possible object is String

setFilename

public void setFilename(java.lang.String value)
Sets the value of the filename property.

Parameters:
value - allowed object is String


JOSM