Examples of EndrundenPaarungsPanel


Examples of de.achim.turnier.endrunde.EndrundenPaarungsPanel

    TabellenPanel tpp2 = hmSPP.get("sppgruppe2").getTabellenPanel();
    TableModel datModel1 = tpp1.getTable().getModel();
    TableModel datModel2 = tpp2.getTable().getModel();
    Vector <String> vGruppe1 = getMannschaften(datModel1);
    Vector <String> vGruppe2 = getMannschaften(datModel2);
    EndrundenPaarungsPanel epp = spc.getEpp();
   
    epp.setvGruppe1(vGruppe1);
    epp.setvGruppe2(vGruppe2);
    epp.fillPanel();
  }
View Full Code Here

Examples of de.achim.turnier.endrunde.EndrundenPaarungsPanel

      spc.setGridDimensions(4, 2);
     
      SpielPlanPanel sppG1 = new SpielPlanPanel();
      SpielPlanPanel sppG2= new SpielPlanPanel();
      //SpielPlanPanel sppEndrunde = new SpielPlanPanel();
      EndrundenPaarungsPanel epp = new EndrundenPaarungsPanel();
     
      sppG1.setName("sppgruppe1");
      sppG1.setGruppe(0);
      sppG2.setName("sppgruppe2");
      sppG2.setGruppe(1);
      epp.setName("sppendrunde");
      epp.setGruppe(2);
     
      sppG1.setTitle("Gruppe 1");
      sppG2.setTitle("Gruppe 2");
      //epp.setTitle("Endrunde");
     
      epp.setName("endrundenzuordnung");
     
      sppG1.setMotherPanel(spc);
      sppG2.setMotherPanel(spc);
      epp.setMotherPanel(spc);
     
      vSPP.add(sppG1);
      vSPP.add(sppG2);
      vSPP.add(epp);
      hmSPP.put("sppgruppe1", sppG1);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.