Package de.chris_soft.fyllgen.widget.dialog

Examples of de.chris_soft.fyllgen.widget.dialog.PersonChoiceShell.addPerson()


    }
    else if (persons.length > 1) {
      PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "Zum Kind wechseln", "Zum Kind springen", null,
          1, true, null, false);
      for (Person person : persons) {
        pcs.addPerson(person, null);
      }
      pcs.open();

      if (pcs.personChoice != null) {
        // Es wurde eine vorhandene Person angew�hlt.
View Full Code Here


    }
    else if (persons.length > 1) {
      PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "Zum Partner wechseln", "Zum Partner springen",
          null, 1, true, null, false);
      for (Person person : persons) {
        pcs.addPerson(person, null);
      }
      pcs.open();

      if (pcs.personChoice != null) {
        // Es wurde eine vorhandene Person angew�hlt.
View Full Code Here

    PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "N�chste Person mit E-Mail-Adresse", "Anzeigen",
        null, 1, true, null, false);
    for (int k = 0; k < mailPersons.size(); k++) {
      Person person = mailPersons.get(k);
      String mailAddress = person.getValueView(Person.MAIL);
      pcs.addPerson(person, "(" + mailAddress + ")");
    }
    pcs.personChoice = currentPerson;
    pcs.open();
    if (pcs.personChoice != null) {
      Family.instance.setCurrentPerson(pcs.personChoice, 1);
View Full Code Here

    }
    else if (persons.length > 1) {
      PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "Zum Elternteil wechseln",
          "Zum Elternteil springen", null, 1, true, null, false);
      for (Person person : persons) {
        pcs.addPerson(person, null);
      }
      pcs.open();

      if (pcs.personChoice != null) {
        // Es wurde eine vorhandene Person angew�hlt.
View Full Code Here

    // Shell erzeugen und anzeigen.
    PersonChoiceShell pcs = new PersonChoiceShell(GUI.instance.shell, "Personen ohne Verbindung", "Anzeigen", null, 1,
        true, null, false);
    for (Person person : persons) {
      if (!allConnections.contains(person)) {
        pcs.addPerson(person, null);
      }
    }
    pcs.open();
    if (pcs.personChoice != null) {
      Family.instance.setCurrentPerson(pcs.personChoice, 2);
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.