Back to project page miner.
The source code is released under:
Apache License
If you think the Android project miner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kolomiyets.miner.dialog; // w w w. j a va2 s .c o m import android.support.v4.app.DialogFragment; public interface IDialogResult { public final static int OK = 0; public final static int CANCEL = 1; public void onResult(DialogFragment dlg, int result); }