List of usage examples for java.lang ClassCastException getClass
@HotSpotIntrinsicCandidate public final native Class<?> getClass();
From source file:com.pdftron.pdf.controls.UserCropDialogFragment.java
@Override public void onAttach(Activity activity) { super.onAttach(activity); try {/*from w ww . ja v a 2 s . c o m*/ mListener = (UserCropDialogListener) activity; } catch (ClassCastException e) { throw new ClassCastException(activity.toString() + " must implement " + e.getClass().toString()); } }