Back to project page gonzomemory.
The source code is released under:
Apache License
If you think the Android project gonzomemory 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 de.janpeuker.apps.gonzonotes.mvp; //from www .j a va 2s . c o m import android.os.Bundle; public interface GonzonotesPresenter { public void createView(Bundle savedInstanceState); public void resumeView(); public void pauseView(); public void startTransfer(); public void storeInstanceState(Bundle storeBundle); }