/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
- package com.google.marvin.whereabout;
- public class Business {
- public String title;
- public String address;
- public double lat, lon;
- public String tel;
- public double dist;
- public String dir;
-
- public Business() {}
-
- public Business(String title, String address, String tel, double lat,
- double lon, String dir) {
- this.title = title;
- this.address = address;
- this.lat = lat; this.lon = lon;
- this.tel = tel;
- this.dir = dir;
- }
- }