04.06.2008 | 22:12:22
immagine
Ing. Emanuele Scapin

Java, es4, classe Point serializzabile
  •  

  • Definizione dell'oggetto Point (utilizzata dalla classe Address), che gestisce i dati di una posizione geografica (coordinate), con marcatori per la definizione in Xml.

    1. import javax.xml.bind.annotation.XmlElement;  
    2. import javax.xml.bind.annotation.XmlRootElement;  
    3.   
    4. @XmlRootElement()  
    5. public class Point {  
    6.     public Point() {  
    7.        Type = "";   
    8.     }  
    9.       
    10.     private double Latitude;  
    11.     @XmlElement()  
    12.     public double getLatitude() {  
    13.         return Latitude; //String.valueOf(Velocita);  
    14.     }  
    15.   
    16.     public void setLatitude(double x) {  
    17.         Latitude = x;  
    18.     }    
    19.       
    20.     private double Longitude;  
    21.     @XmlElement()  
    22.     public double getLongitude() {  
    23.         return Longitude; //String.valueOf(Velocita);  
    24.     }  
    25.   
    26.     public void setLongitude(double x) {  
    27.         Longitude = x;  
    28.     }   
    29.       
    30.     private int Id;  
    31.     @XmlElement()  
    32.     public int getId() {  
    33.         return Id;   
    34.     }  
    35.   
    36.     public void setId(int x) {  
    37.         Id = x;  
    38.     }  
    39.       
    40.     // type = S start, type = E end   
    41.     private String Type;  
    42.     @XmlElement()  
    43.     public String getType() {  
    44.         return Type;   
    45.     }  
    46.   
    47.     public void setType(String x) {  
    48.         Type = x;  
    49.     }      
    50. }  
    51.           

© Emanuele Scapin 2009-2014

 

Valid HTML 4.01! Valid CSS!