/* Public property access function
   *
   */
  public void setStations(ArrayList<CategoryStation> stations) {
    mCategoryStations = stations;

    if (mAdapter != null) {
      mAdapter.clear();

      mAdapter =
          new CategoryStationListAdapter(
              getActivity(), R.layout.view_category_station_row, mCategoryStations);

      mListView.setAdapter(mAdapter);
      // mListView.setOnItemClickListener(mListener);

      // mAdapter.addAll(mStations);
      mAdapter.notifyDataSetChanged();
    }

    Log.d(TAG, "Stations has been loaded");
  }