Package org.objectweb.speedo.pobjects.inheritance.ejboo

Examples of org.objectweb.speedo.pobjects.inheritance.ejboo.Service


        mar = new Marche();
        pm.makePersistent(mar);
        nbMar ++;
      }
      if ((idArt % 2) == 0) { //pair
        a = new Service(idArt);
      } else { //impair
        a = new Materiel(idArt);
      }
      pm.makePersistent(a);
      a.setCatalogue(cat);
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.pobjects.inheritance.ejboo.Service

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.