Como usar os métodos setArguments () e getArguments () nos Fragments?

Tenho 2 fragmentos: (1) Frag1 (2) Frag2.

Frag1
bundl = new Bundle();
bundl.putStringArrayList("elist", eList);

Frag2 dv = new Frag2();
dv.setArguments(bundl);
FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.the_fragg,dv);
ft.show(getFragmentManager().findFragmentById(R.id.the_fragg)); 
ft.addToBackStack(null);
ft.commit();

Como obtenho esses dados no Frag2?

questionAnswers(7)

yourAnswerToTheQuestion