ActivityMapper abstract class
Finds the activity to run for a given {@link Place}, used to configure an {@link ActivityManager}.
abstract class ActivityMapper { /** * Returns the activity to run for the given {@link Place}, or null. * * @param place a Place object */ Activity getActivity(Place place); }