Package com.restfb.types

Examples of com.restfb.types.Venue


      addAttribute(content, "end_time", e.getEndTime().getTime() + "");
    }
    addAttribute(content, "location", e.getLocation());

    // process list of venues
    Venue venue = null;
    List<String> venueList = new ArrayList<String>();
    if ((venue = e.getVenue()) != null) {
      venueList.add(venue.getCity());
      venueList.add(venue.getCountry());
      venueList.add(venue.getState());
      venueList.add(venue.getStreet());
      venueList.add(venue.getLatitude() + "");
      venueList.add(venue.getLongitude() + "");

      addMVAttribute(content, "venue", venueList);
    }

    addAttribute(content, "privacy", e.getPrivacy());
View Full Code Here

TOP

Related Classes of com.restfb.types.Venue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.