Back to project page Swinedroid.
The source code is released under:
GNU General Public License
If you think the Android project Swinedroid 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.legind.swinedroid.NetworkRunnable; /*from w w w . ja v a 2 s. co m*/ import java.io.IOException; import org.xml.sax.SAXException; import android.content.Intent; import android.content.DialogInterface.OnCancelListener; import com.legind.Dialogs.ErrorMessageHandler; import com.legind.swinedroid.xml.XMLHandlerException; import com.legind.web.WebTransport.WebTransportException; public interface NetworkRunnableUniqueRequires { void onDocumentValidReturned(); void onCertificateInspectVerified() throws IOException, SAXException, XMLHandlerException, WebTransportException; void onHandleMessageBegin(); void onCertErrorBegin(); void callHashDialog(Intent i); ErrorMessageHandler getEMH(); OnCancelListener getCancelListener(); }