How would I add a tag to a newly created instance?
case 0:           
 return FragmentNotifications.newInstance(notifications, mCurrentTime);
The new instance:
    public static FragmentNotifications 
                 newInstance(String notificationsArray, long currentTime){
        FragmentNotifications fragment = new FragmentNotifications();
        return fragment;
    }
How would I assign a name to the fragment created with viewpager?
@Override
    public Fragment getItem(int position) {
        switch (position) {
            case 0:
                return 
             FragmentNotifications.newInstance(notifications, mCurrentTime);
            case 1:
                return FragmentMessages.newInstance(messages, 
              mCurrentTime);
            case 2:
                return new FragmentProfile();
            default:
                return null;
        }
    }
