Constructor for a feed image with no associated hyperlink.paramimage the URL of the image to display.deprecateda FeedImage must include a link url. this(image, null);
this(image, null);
Constructor for a feed image with an associated hyperlink.paramimage the URL of the image to display.paramlink the url to link to when the image is clicked. super(image, link); if (null == image || null == link) { throw new IllegalArgumentException("both image and link URLs are required"); }
super(image, link); if (null == image || null == link) { throw new IllegalArgumentException("both image and link URLs are required"); }
returnthe URL of the image to display. return getFirst();
return getFirst();
returnthe String representation of the image URL return getImageUrl().toString();
return getImageUrl().toString();
returnthe URL of the link that will be opened when the image is clicked. return getSecond();
return getSecond();