Back to project page wizapp.
The source code is released under:
MIT License
If you think the Android project wizapp 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.wb.wizapp.router; /* www .jav a2 s. com*/ import android.content.Context; import android.net.Uri; public interface RouteeCallback { public String scheme(); public void run(Context context, Uri uri); }