/Prototipo/Broker_v2/src/broker/geoConsulta/entidades/Punto.java

http://prototipomemoria.googlecode.com/ · Java · 18 lines · 17 code · 1 blank · 0 comment · 0 complexity · 89fa0dbb36baf52317d9c81d2c66022b MD5 · raw file

  1. package broker.geoConsulta.entidades;
  2. public class Punto implements GeoRepresentation{
  3. private int latitud;
  4. private int longitud;
  5. public int getLatitud() {
  6. return latitud;
  7. }
  8. public void setLatitud(int latitud) {
  9. this.latitud = latitud;
  10. }
  11. public int getLongitud() {
  12. return longitud;
  13. }
  14. public void setLongitud(int longitud) {
  15. this.longitud = longitud;
  16. }
  17. }