package android.support.v4.app;

/** Stub to make unit tests able to resolve types without having a real dependency
 * on the appcompat library */
public abstract class DialogFragment extends Fragment {
    public void show(FragmentManager manager, String tag) { }
    public int show(FragmentTransaction transaction, String tag) { return 0; }
    public void dismiss() { }
}