Package Utils

Examples of Utils.Profile


                InputBox inProfile=new InputBox(mwcMain, "Enter the name of this profile:", "The profile name could not be empty!");
                inProfile.setCheckEmpty(true);
                inProfile.setVisible(true);
                if(inProfile.getResult()==null)
                    return;
                Profile prfMain=new Profile(inProfile.getResult());
                inProfile=null;
                FileWriter fwDBWriter;
                if(!fdCreate.getSelectedFile().exists())
                {
                    if((!fdCreate.getSelectedFile().getName().toLowerCase().endsWith(".vcd"))&&(!(new File(fdCreate.getSelectedFile().getName()+".vcd")).exists()))
View Full Code Here


            Password pcPass=new Password(mwcMain);
            pcPass.setVisible(true);
            if(pcPass.getPassword()!=null)
            {
                mwcMain.CloseDatabase();
                Profile prfMain=(new FileReader(fleOpened)).read(pcPass.getPassword());
                if(prfMain!=null)
                {
                    prfMain.resetModifyed();
                    mwcMain.setProfile(prfMain);
                    mwcMain.setOpenedFile(fleOpened);
                    mwcMain.setPassword(pcPass.getPassword());
                }
                else
View Full Code Here

                InputBox inProfile=new InputBox(mwcMain, "Enter the name of this profile:", "The profile name could not be empty!");
                inProfile.setCheckEmpty(true);
                inProfile.setVisible(true);
                if(inProfile.getResult()==null)
                    return;
                Profile prfMain=new Profile(inProfile.getResult());
                inProfile=null;
                FileWriter fwDBWriter;
                if(!fdCreate.getSelectedFile().exists())
                {
                    if((!fdCreate.getSelectedFile().getName().toLowerCase().endsWith(".vcd"))&&(!(new File(fdCreate.getSelectedFile().getName()+".vcd")).exists()))
View Full Code Here

            Password pcPass=new Password(mwcMain);
            pcPass.setVisible(true);
            if(pcPass.getPassword()!=null)
            {
                mwcMain.CloseDatabase();
                Profile prfMain=(new FileReader(fleOpened)).read(pcPass.getPassword());
                if(prfMain!=null)
                {
                    prfMain.resetModifyed();
                    mwcMain.setProfile(prfMain);
                    mwcMain.setOpenedFile(fleOpened);
                    mwcMain.setPassword(pcPass.getPassword());
                }
                else
View Full Code Here

TOP

Related Classes of Utils.Profile

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.