Advertisement
absorr

Datecrawl Manual-ish New Date Posting

Jul 6th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.28 KB | None | 0 0
  1.         Date date;
  2.         ArrayList<Location> locations = new ArrayList<>();
  3.  
  4.         locations.add(new Location("Newport Aquarium", "ChIJlS8xEmmxQYgR79nUVdZZxM8", null, null,
  5.                 null, null, null, new LatLng(39.0943311, -84.4975498)));
  6.         locations.add(new Location("Brios Tuscan Grille", "ChIJ_VJTLWmxQYgRaOTJk-mBW54", null, null, null, null, null, null));
  7.         locations.add(new Location("Yeatmans Cove Park", "ChIJkV51b2exQYgRLmkA6uJ5Hpo", null, null, null, null, null, null));
  8.  
  9.         ArrayList<String> tags = new ArrayList<>();
  10.  
  11.         tags.add("romance");
  12.         tags.add("aquarium");
  13.         tags.add("newport");
  14.         tags.add("levee");
  15.         tags.add("park");
  16.         tags.add("italian");
  17.         tags.add("dinner");
  18.  
  19.         date = new Date(
  20.                 "", "Newport Night - Fish & Food (Romance)",
  21.                 Profile.localProfile.username,
  22.                 Profile.localProfile.id,
  23.                 Date.DateActiveLevel.RELAXED,
  24.                 Date.DateAtmosphere.FORMAL,
  25.                 70, 100,
  26.                 "A romantic night at Newport on the Levee. The third is the park accessible by simply crossing the Purple People Bridge.",
  27.                 locations,
  28.                 false,
  29.                 0,
  30.                 tags
  31.         );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement