Package englishlearning.controller

Examples of englishlearning.controller.User


     * Creates new form UpdateInfo
     */
    User u =null;
    public UpdateInfo() throws ClassNotFoundException, SQLException, InstantiationException, IllegalAccessException {
        initComponents();
        u= new User();
    }
View Full Code Here


        initComponents();
        this.setName("Profile");
    }
    public void SetData () throws SQLException, ClassNotFoundException, InstantiationException, IllegalAccessException
    {
        user = new User(EnglishLearning.username);
        ArrayList<String> list = user.getData();
        jTextField1.setText(EnglishLearning.username);
        jTextField2.setText(list.get(0));
        jTextField3.setText(list.get(1));
        jTextField4.setText(list.get(2));
View Full Code Here

TOP

Related Classes of englishlearning.controller.User

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.