Package IO

Examples of IO.OpenObject


        delete_btn.setEnabled(false);
    }

    //check if any accounts exists and loads them
    private void check_account_exists(){
        Keep_It_Safe.read=new OpenObject();
        if(Keep_It_Safe.read.openfile());

        if (Keep_It_Safe.accounts.isEmpty())
            change_label_false();
     
View Full Code Here


        }

    }

    public void SignIn(){
        Keep_It_Safe.read=new OpenObject(getUI_login().getjTextField1());
        Account account=new Account();
        boolean flag=false;
        String pass;
        if(Keep_It_Safe.read.openfile()){
            pass=encrypt_md5(getUI_login().getjPasswordField1());
View Full Code Here

            this.output="The Account Does Not Exist.Please Create A New Account";
        }

    }
    public void delete_account (Frame_Main aux){
        Keep_It_Safe.read=new OpenObject(getUI_login().getjTextField1());
        SaveObject save=new SaveObject();
        boolean flag=false;
        Account account=new Account();
        String pass;
        if(Keep_It_Safe.read.openfile()){
View Full Code Here

    public String printalreadyexists(){
        String password_incorrect="File Already Exists,Use a Diferente Name";
        return password_incorrect;
    }
    public boolean Show_Accounts(){
        Keep_It_Safe.read=new OpenObject();
        boolean flag=false;

        if(Keep_It_Safe.read.openfile())
        {
            flag=true;
View Full Code Here

TOP

Related Classes of IO.OpenObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.