Package fr.aston.administration.metiers

Examples of fr.aston.administration.metiers.Manager


    te[1]=e2;
    te[2]=e3;
   
   
    // 2. Creation du manager et affectation du tableau d'employ�s
    Manager m1= new Manager("LOISEAU", "Dor�mi", new Date("05/01/1968"),"loiseau","123", "loiseau@aston.com", 1000, te);
   
    // 3. Affichage du Manager
   
    System.out.println(m1);
   
View Full Code Here


    Employe [] te2 = new Employe[3];
    te2[0]=e4;
    te2[1]=e5;
    te2[2]=e6;
   
    Manager m1= new Manager("LOISEAU", "Dor�mi", new Date("05/01/1968"),"loiseau","123", "loiseau@aston.com", 1000, te);
    Manager m2= new Manager("LACARRIERE", "Hubert", new Date("05/01/1968"),"lacarriere","123", "loiseau@aston.com", 1000, te2);
    Manager[] tm = new Manager[2];
    tm[0] = m1;
    tm[1]= m2;
    Manager superman= new Manager("SUPERMAN", "Jim", new Date("05/01/1968"),"superman","123", "superman@aston.com", 1000, tm);
   
   
    System.out.println(superman);
   
  }
View Full Code Here

    te2[0]=e4;
    te2[1]=e5;
    te2[2]=e6;
   
   
    Manager m1= new Manager("LOISEAU", "Dor�mi", new Date("05/01/1968"),"loiseau","123", "loiseau@aston.com", 1000, te);
    Manager m2= new Manager("LACARRIERE", "Hubert", new Date("05/01/1968"),"lacarriere","123", "loiseau@aston.com", 1000, te2);
    Manager[] tm = new Manager[2];
    tm[0] = m1;
    tm[1]= m2;
   
    ArrayList<Employe> listeManager = new ArrayList<Employe>();
    listeManager.add(m1);
    listeManager.add(m2);
   
   
    Manager superman= new Manager("SUPERMAN", "Jim", new Date("05/01/1968"),"superman","123",
        "superman@aston.com", 1000, listeManager.toArray(new Employe[0]));
   
    // 3. Affichage du Manager
   
    System.out.println(superman);
View Full Code Here

TOP

Related Classes of fr.aston.administration.metiers.Manager

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.