Cómo abrir una página de fragmentos, cuando se presiona una notificación en Android

Estoy tratando de abrir un fragmento cuando presiono una notificación en la barra de notificaciones. La estructura de mi aplicación es:

una actividad base con un menú de cajón de navegación

algún fragmento que se abre desde el menú

b.setOnClickListener(new OnClickListener() {

        @SuppressWarnings({ "deprecation", "static-access" })
        public void onClick(View v) {

        w_nm=(NotificationManager) getActivity().getSystemService(getActivity().NOTIFICATION_SERVICE);

         Notification notify=new Notification(R.drawable.notnificationlogo,waternoti,System.currentTimeMillis());

         Intent notificationIntent = new Intent(getActivity(), Abc.class);



         PendingIntent pending=PendingIntent.getActivity(getActivity(), 0,notificationIntent, 0);


         notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
                 | Intent.FLAG_ACTIVITY_SINGLE_TOP );

        notify.flags = Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL;

           notify.setLatestEventInfo(getActivity(),waternoti,waternoti1, pending);

         w_nm.notify(0, notify);

¿Alguien puede decirme cómo vincular con la página siguiente fragmento (el código actual está en clase que extiende fragmento)

Respuestas a la pregunta(3)

Su respuesta a la pregunta