Package modele.commun

Examples of modele.commun.Etat


              compteUser.setPrenom(res.getString(3));
              compteUser.setMail(res.getString(4));
              compteUser.setLogin(res.getString(5));
              compteUser.setPassWord(res.getString(6));

              Etat etat = new Etat(res.getInt(7));
              etat.setDescrip(res.getString(8));
              compteUser.setEtat(etat);

              listeCompteUser.add(compteUser);
            }
          } finally {
View Full Code Here

TOP

Related Classes of modele.commun.Etat

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.