/Prototipo/wsConsume/build/generated/jax-wsCache/wsTransformador/wsconsume/GetDataFiltro.java

http://prototipomemoria.googlecode.com/ · Java · 168 lines · 49 code · 16 blank · 103 comment · 0 complexity · 8d3ec4b887ba858e3a9dbe761254de7e MD5 · raw file

  1. package wsconsume;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlType;
  5. /**
  6. * <p>Java class for getDataFiltro complex type.
  7. *
  8. * <p>The following schema fragment specifies the expected content contained within this class.
  9. *
  10. * <pre>
  11. * &lt;complexType name="getDataFiltro">
  12. * &lt;complexContent>
  13. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  14. * &lt;sequence>
  15. * &lt;element name="capa" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  16. * &lt;element name="latSurOesteVisor" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
  17. * &lt;element name="lonSurOesteVisor" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
  18. * &lt;element name="latNorEsteVisor" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
  19. * &lt;element name="lonNorEsteVisor" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
  20. * &lt;/sequence>
  21. * &lt;/restriction>
  22. * &lt;/complexContent>
  23. * &lt;/complexType>
  24. * </pre>
  25. *
  26. *
  27. */
  28. @XmlAccessorType(XmlAccessType.FIELD)
  29. @XmlType(name = "getDataFiltro", propOrder = {
  30. "capa",
  31. "latSurOesteVisor",
  32. "lonSurOesteVisor",
  33. "latNorEsteVisor",
  34. "lonNorEsteVisor"
  35. })
  36. public class GetDataFiltro {
  37. protected String capa;
  38. protected Double latSurOesteVisor;
  39. protected Double lonSurOesteVisor;
  40. protected Double latNorEsteVisor;
  41. protected Double lonNorEsteVisor;
  42. /**
  43. * Gets the value of the capa property.
  44. *
  45. * @return
  46. * possible object is
  47. * {@link String }
  48. *
  49. */
  50. public String getCapa() {
  51. return capa;
  52. }
  53. /**
  54. * Sets the value of the capa property.
  55. *
  56. * @param value
  57. * allowed object is
  58. * {@link String }
  59. *
  60. */
  61. public void setCapa(String value) {
  62. this.capa = value;
  63. }
  64. /**
  65. * Gets the value of the latSurOesteVisor property.
  66. *
  67. * @return
  68. * possible object is
  69. * {@link Double }
  70. *
  71. */
  72. public Double getLatSurOesteVisor() {
  73. return latSurOesteVisor;
  74. }
  75. /**
  76. * Sets the value of the latSurOesteVisor property.
  77. *
  78. * @param value
  79. * allowed object is
  80. * {@link Double }
  81. *
  82. */
  83. public void setLatSurOesteVisor(Double value) {
  84. this.latSurOesteVisor = value;
  85. }
  86. /**
  87. * Gets the value of the lonSurOesteVisor property.
  88. *
  89. * @return
  90. * possible object is
  91. * {@link Double }
  92. *
  93. */
  94. public Double getLonSurOesteVisor() {
  95. return lonSurOesteVisor;
  96. }
  97. /**
  98. * Sets the value of the lonSurOesteVisor property.
  99. *
  100. * @param value
  101. * allowed object is
  102. * {@link Double }
  103. *
  104. */
  105. public void setLonSurOesteVisor(Double value) {
  106. this.lonSurOesteVisor = value;
  107. }
  108. /**
  109. * Gets the value of the latNorEsteVisor property.
  110. *
  111. * @return
  112. * possible object is
  113. * {@link Double }
  114. *
  115. */
  116. public Double getLatNorEsteVisor() {
  117. return latNorEsteVisor;
  118. }
  119. /**
  120. * Sets the value of the latNorEsteVisor property.
  121. *
  122. * @param value
  123. * allowed object is
  124. * {@link Double }
  125. *
  126. */
  127. public void setLatNorEsteVisor(Double value) {
  128. this.latNorEsteVisor = value;
  129. }
  130. /**
  131. * Gets the value of the lonNorEsteVisor property.
  132. *
  133. * @return
  134. * possible object is
  135. * {@link Double }
  136. *
  137. */
  138. public Double getLonNorEsteVisor() {
  139. return lonNorEsteVisor;
  140. }
  141. /**
  142. * Sets the value of the lonNorEsteVisor property.
  143. *
  144. * @param value
  145. * allowed object is
  146. * {@link Double }
  147. *
  148. */
  149. public void setLonNorEsteVisor(Double value) {
  150. this.lonNorEsteVisor = value;
  151. }
  152. }