// TODO: Rename and change types of parameters
 public static NewsFragment newInstance(int param1, String param2) {
   NewsFragment fragment = new NewsFragment();
   Bundle args = new Bundle();
   args.putInt(ARG_TABLE_CONTENT, param1);
   args.putString(ARG_COMPANY_ID, param2);
   fragment.setArguments(args);
   return fragment;
 }