kevinmost
06/27/2016, 2:52 PMinterface CoupledFragment<A : Activity> {
fun activity(): A = getActivity() as? A ?: throw IllegalStateException("Fragment ${javaClass.simpleName} was not expected to be part of ${getActivity().javaClass.simpleName}")
}
(I think that compiles, did not test it...)