-
-
Method Summary
Modifier and Type Method Description abstract List<T>getEntries(Context context)Get the persisted Entrys directly. abstract UnitsetEntries(List<T> state, Context context)Set the persisted Entrys directly. abstract TgetActiveEntry(Context context)Get the active Entry directly. abstract UnitsetActiveEntry(T entry, Context context)Set the active Entry directly. abstract FragmentcreateFragment()Create a Fragment that lets users manage the Entrys via UI. abstract UnitstartEnvPickerActivity(Context context)Start an Activity that lets users manage the Entrys via UI. abstract Config<T>getConfig()Immutable Config provided during initialization. -
-
Method Detail
-
getEntries
abstract List<T> getEntries(Context context)
Get the persisted Entrys directly.
-
setEntries
abstract Unit setEntries(List<T> state, Context context)
Set the persisted Entrys directly.
-
getActiveEntry
abstract T getActiveEntry(Context context)
Get the active Entry directly.
-
setActiveEntry
abstract Unit setActiveEntry(T entry, Context context)
Set the active Entry directly.
-
createFragment
abstract Fragment createFragment()
-
startEnvPickerActivity
abstract Unit startEnvPickerActivity(Context context)
Start an Activity that lets users manage the Entrys via UI. It simply contains an EnvFragment.
-
-
-
-