/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
- package broker.geoConsulta.entidades;
- public class Punto implements GeoRepresentation{
- private int latitud;
- private int longitud;
- public int getLatitud() {
- return latitud;
- }
- public void setLatitud(int latitud) {
- this.latitud = latitud;
- }
- public int getLongitud() {
- return longitud;
- }
- public void setLongitud(int longitud) {
- this.longitud = longitud;
- }
- }