Package com.example.myproject.client.core

Examples of com.example.myproject.client.core.User


        BaseDao dao = injector.getInstance(BaseDao.class);

        @SuppressWarnings("unchecked")
      List<User> usg = (List<User>) dao.getList("select * from bdlequipe.user", User.class);
      Iterator<User> i = usg.iterator();
      User usager;
          System.out.println("Usagers : ");
          while (i.hasNext()) {
            usager = (User) i.next();
              System.out.println(usager.fname);
          }
View Full Code Here

TOP

Related Classes of com.example.myproject.client.core.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.