Back to project page android-password.
The source code is released under:
GNU General Public License
If you think the Android project android-password 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.echtzeitraum.openpassword; // www . ja va 2 s . co m /** * Interface for the fragment forms to set up the password generator. * @author Marvin Rabe <me@marvinrabe.de> * @licenses GNU General Public License 3 <http://www.gnu.org/licenses/> */ public interface FragmentForms { /** * Generates password and displays it in the text field. */ public void generatePassword(); /** * Applies the controls to the password generator. */ public void saveControls(); }