Examples of PersonWrapper


Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmBirthdate() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (birthDateAcceptRadioButton.isSelected()) {
                birthDateChooser.setDate(mpiMatchPersonWrapper.getBirthdate());
            } else if (birthDateRejectRadioButton.isSelected()) {
                birthDateChooser.setDate(lpiMatchPersonWrapper.getBirthdate());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmMaritalStatus() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (maritalStatusAcceptRadioButton.isSelected()) {
                maritalStatusComboBox.setSelectedItem(DisplayableMaritalStatus.getDisplayableMaritalStatus(mpiMatchPersonWrapper.getMaritalStatus()));
            } else if (maritalStatusRejectRadioButton.isSelected()) {
                maritalStatusComboBox.setSelectedItem(DisplayableMaritalStatus.getDisplayableMaritalStatus(lpiMatchPersonWrapper.getMaritalStatus()));
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmOtherName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (otherNameAcceptRadioButton.isSelected()) {
                otherNameTextField.setText(mpiMatchPersonWrapper.getOtherName());
            } else if (otherNameRejectRadioButton.isSelected()) {
                otherNameTextField.setText(lpiMatchPersonWrapper.getOtherName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmClanName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (clanAcceptRadioButton.isSelected()) {
                clanTextField.setText(mpiMatchPersonWrapper.getClanName());
            } else if (clanRejectRadioButton.isSelected()) {
                clanTextField.setText(lpiMatchPersonWrapper.getClanName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmVillageName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (villageAcceptRadioButton.isSelected()) {
                villageTextField.setText(mpiMatchPersonWrapper.getVillageName());
            } else if (villageRejectRadioButton.isSelected()) {
                villageTextField.setText(lpiMatchPersonWrapper.getVillageName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmFathersFirstName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (fathersFirstNameAcceptRadioButton.isSelected()) {
                fathersFirstNameTextField.setText(mpiMatchPersonWrapper.getFathersFirstName());
            } else if (fathersFirstNameRejectRadioButton.isSelected()) {
                fathersFirstNameTextField.setText(lpiMatchPersonWrapper.getFathersFirstName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmFathersMiddleName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (fathersMiddleNameAcceptRadioButton.isSelected()) {
                fathersMiddleNameTextField.setText(mpiMatchPersonWrapper.getFathersMiddleName());
            } else if (fathersMiddleNameRejectRadioButton.isSelected()) {
                fathersMiddleNameTextField.setText(lpiMatchPersonWrapper.getFathersMiddleName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmFathersLastName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (fathersLastNameAcceptRadioButton.isSelected()) {
                fathersLastNameTextField.setText(mpiMatchPersonWrapper.getFathersLastName());
            } else if (fathersLastNameRejectRadioButton.isSelected()) {
                fathersLastNameTextField.setText(lpiMatchPersonWrapper.getFathersLastName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmMothersFirstName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (mothersFirstNameAcceptRadioButton.isSelected()) {
                mothersFirstNameTextField.setText(mpiMatchPersonWrapper.getMothersFirstName());
            } else if (mothersFirstNameRejectRadioButton.isSelected()) {
                mothersFirstNameTextField.setText(lpiMatchPersonWrapper.getMothersFirstName());
            }
        }
    }
View Full Code Here

Examples of ke.go.moh.oec.reception.controller.PersonWrapper

        }
    }

    @Action
    public void confirmMothersMiddleName() {
        PersonWrapper mpiMatchPersonWrapper = mainViewHelper.getSession().getMpiMatchPersonWrapper();
        PersonWrapper lpiMatchPersonWrapper = mainViewHelper.getSession().getLpiMatchPersonWrapper();
        if (mpiMatchPersonWrapper != null) {
            if (mothersMiddleNameAcceptRadioButton.isSelected()) {
                mothersMiddleNameTextField.setText(mpiMatchPersonWrapper.getMothersMiddleName());
            } else if (mothersMiddleNameRejectRadioButton.isSelected()) {
                mothersMiddleNameTextField.setText(lpiMatchPersonWrapper.getMothersMiddleName());
            }
        }
    }
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.