Uses of Class
org.jickr.Photo

Uses of Photo in org.jickr
 

Methods in org.jickr that return Photo
static Photo Photo.create(java.io.File imageFile, java.lang.String title)
          Create a new Photo on Flickr.
static Photo Photo.create(java.io.File imageFile, java.lang.String title, java.lang.String desc, java.lang.String tags, boolean pub, boolean friend, boolean family)
          Create a new Photo on Flickr.
static Photo Photo.findByID(java.lang.String id, java.lang.String secret)
          Get a photo, provided you have the Photo's id, and secret key.
 Photo Tag.getParentPhoto()
          Get the Photo that this Tag is attached to.
 Photo PhotoSet.getPrimaryPhoto()
          Get the primary Photo associated with this PhotoSet.
 

Methods in org.jickr that return types with arguments of type Photo
static java.util.List<Photo> Photo.findByTags(java.lang.String tags)
          Get a list of photos that are tagged with the desired keywords.
static java.util.List<Photo> Photo.findByTags(java.lang.String tags, boolean join)
          Get a list of Photos that are tagged with the desired keywords.
 java.util.List<Photo> User.getFavoritePhotos()
          Get a list of all favorite photos for this user.
static java.util.List<Photo> Photo.getInteresting()
          Gets a list of Photos that Flickr users find interesting, for today.
 java.util.List<Photo> Group.getPhotos()
          Get the photos available in this Group's pool.
 java.util.List<Photo> User.getPublicContactPhotos()
          Get a list of all public photos for this user's contacts.
 java.util.List<Photo> User.getPublicContactPhotos(boolean justFriends, int count)
          Get a list of all public photos for this user's contacts.
 java.util.List<Photo> User.getPublicFavoritePhotos()
          Get a list of all public favorite photos for this user.
 java.util.List<Photo> User.getPublicPhotos()
          Get a list of all public photos for this user.
static java.util.List<Photo> Photo.getRecentPhotos()
          Gets a list of the most recent photos on Flickr.
static java.util.List<Photo> Photo.search(PhotoSearch search)
          Get a list of Photos associated with the PhotoSearch term.
 

Methods in org.jickr with parameters of type Photo
 void PhotoSet.add(Photo photo)
          Adds a photo to a PhotoSet.
 void Group.add(Photo photo)
          Add a photo to the Group's pool.
 int Photo.compareTo(Photo p)
          Compares a Photo's image.
static PhotoSet PhotoSet.create(java.lang.String title, java.lang.String description, Photo primaryPhoto)
          Create a new PhotoSet.
 void PhotoSet.remove(Photo photo)
          Removes a photo to a PhotoSet.
 void Group.remove(Photo photo)
          Remove a photo to the Group's pool.
 void PhotoSet.setPhotos(Photo primaryPhoto, java.util.List<Photo> photolist)
          Sets up all the photos in a PhotoSet.
 

Method parameters in org.jickr with type arguments of type Photo
 void PhotoSet.setPhotos(Photo primaryPhoto, java.util.List<Photo> photolist)
          Sets up all the photos in a PhotoSet.