FeedImagepublic class FeedImage extends Pair A simple Pair of URLs for an image appearing in
a newsfeed/minifeed story and the optional destination URL for a click
on that image. |
Constructors Summary |
---|
public FeedImage(URL image)Constructor for a feed image with no associated hyperlink.
super(image, null);
| public FeedImage(URL image, URL link)Constructor for a feed image with an associated hyperlink.
super(image, link);
|
|