Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private Location getLocation() {
- String[] result = RandomCountryLatLngDataUtil.choose();
- Location location = new Location();
- location.setCountry(result[0]);
- location.setLat(result[1]);
- location.setLon(result[2]);
- return location;
- }
- PS.: SourceNamesEnum can be found at http://pastebin.com/dQBJC9e9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement