Package framework.beans.directory.simple.entities

Examples of framework.beans.directory.simple.entities.Sex


                data.surname = surname != null ? surname.getTitle() : null;
                data.name = name != null ? name.getTitle() : null;
                data.pathronymic = patronymic != null ? patronymic.getTitle() : null;

                Sex sex = client.getSex();
                if (sex != null) {
                    data.sex = client.getSex().getId() == Sex.CLIENT_SEX_MALE ? 'М' : 'Ж';
                }
                else {
                    data.sex = Character.MIN_VALUE;
View Full Code Here

TOP

Related Classes of framework.beans.directory.simple.entities.Sex

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.