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.


Method Summary
 N getFirst()
           
 V getSecond()
           
 void setFirst(N first)
           
 void setSecond(V second)
           
 

Method Detail

setFirst

void setFirst(N first)

getFirst

N getFirst()

setSecond

void setSecond(V second)

getSecond

V getSecond()


Copyright © 2010. All Rights Reserved.