Back to project page sqlite-provider.
The source code is released under:
Apache License
If you think the Android project sqlite-provider 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.novoda.sqliteprovider.demo.ui.input; //from w ww .j a v a 2 s.co m import android.view.View; public interface DemoMenu { void onViewAllFireworksClick(View button); void onAddFireworkClick(View button); void onFindFireworkWithPrimaryKeyClick(View button); void onFindAllFireworksFromOneShopClick(View button); void onGroupFireworksByTypeAndHavingColorRedClick(View button); void onFindThreeFireworkShopsClick(View button); void onFindUniqueFireworksClick(View button); }