com.google.code.facebookapi
Interface IPair<N,V>
- Type Parameters:
N - The type of the first object in the pair.V - The type of the second object in the pair.
- All Known Subinterfaces:
- IFeedImage
- All Known Implementing Classes:
- FeedFacebookPhoto, FeedImage, FeedUserPhoto, Pair
public interface IPair<N,V>
This interface provides backwards compatibility between Pair and IFeedImage instances used in feed.* API calls, so that code that was written using the
former method is not forced to be rewritten in order to conform to the latter.
setFirst
void setFirst(N first)
getFirst
N getFirst()
setSecond
void setSecond(V second)
getSecond
V getSecond()
Copyright © 2010. All Rights Reserved.