/WhereAbout/src/com/google/marvin/whereabout/Business.java

http://eyes-free.googlecode.com/ · Java · 21 lines · 18 code · 3 blank · 0 comment · 0 complexity · de2e11b2c0effa7b726834a7e51a1817 MD5 · raw file

  1. package com.google.marvin.whereabout;
  2. public class Business {
  3. public String title;
  4. public String address;
  5. public double lat, lon;
  6. public String tel;
  7. public double dist;
  8. public String dir;
  9. public Business() {}
  10. public Business(String title, String address, String tel, double lat,
  11. double lon, String dir) {
  12. this.title = title;
  13. this.address = address;
  14. this.lat = lat; this.lon = lon;
  15. this.tel = tel;
  16. this.dir = dir;
  17. }
  18. }