Package open.dolphin.infomodel

Examples of open.dolphin.infomodel.SimpleAddressModel


        sb.append(context.getPatient().getFullName());
        sb.append("  ");
        sb.append(context.getPatient().getAgeBirthday());
        nameLabel.setText(sb.toString());

        SimpleAddressModel address = context.getPatient().getAddress();
        if (address != null) {
            addressLabel.setText(address.getAddress());
        } else {
            addressLabel.setText(" ");
        }

        String gender = context.getPatient().getGenderDesc();
View Full Code Here

TOP

Related Classes of open.dolphin.infomodel.SimpleAddressModel

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.