Using ActionScript as an example, I would say FacebookClient on the client. For this reason:
import com.facebook.Client; import com.twitter.Client;
You will need to reference the class in its full package to create an instance in the same class:
new com.facebook.Client();
If it was FacebookClient, I could have
new FacebookClient(); new TwitterClient();
Plus, the client will annoy me when the completion code appears. Extra click to select the correct Client;)
source share