Search code examples
javaflickr

Checking if a photo is present in a set or not(Flickr4Java)


I want to know how to check whether a photo is in a photoset or not. I got the photo through

 PhotoList<Photo> PL = Pface.recentlyUpdated(thisDate, null, 0, 0);
 for (int i = 0;i<PL.size();i++)
 {
   Photo p = PL.get(i); //want to check that if 'p' is present in any set or not . If present want to get the name.
 }

Solution

  • Well this helped me in getting through this.

    https://github.com/callmeal/Flickr4Java/blob/master/Flickr4Java/src/examples/java/Backup.java