Package de.dis2011.menu

Examples of de.dis2011.menu.MaklerSelectionMenu.show()


      //Alle Personen laden
      Set<Person> personen = service.getAllPersons();
     
      //Menü zur Auswahl der Person
      PersonSelectionMenu psm = new PersonSelectionMenu("Person für Vertrag auswählen", personen);
      int pid = psm.show();
     
      //Falls kein Abbruch: Vertragsdaten abfragen und Vertrag anlegen
      if(pid != PersonSelectionMenu.BACK) {
        Kaufvertrag k = new Kaufvertrag();
   
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.