Examples of JaEducation


Examples of org.jabusuite.address.employee.jobassignment.JaEducation

    protected void addEducation(ArrayList<HashMap> lines) {
        if (this.getJobAssignment().getEducation()!=null) {
            Iterator<JaEducation> it = this.getJobAssignment().getEducation().iterator();
            while (it.hasNext()) {
                HashMap line = new HashMap();
                JaEducation education = it.next();
                line.put("jaDetail.groupName", JbsL10N.getString("JobApplication.education"));
                if (education.getDateFrom()!=null)
                    line.put("jaDetail.dateFrom",ClientGlobals.getDateFormat().format(education.getDateFrom())+" - ");
                if (education.getDateTo()!=null)
                    line.put("jaDetail.dateTo",ClientGlobals.getDateFormat().format(education.getDateTo()));
               
                String hs = education.getSchoolName();
                if ((education.getCity()!=null) && (!education.getCity().equals("")))
                    hs+=", "+education.getCity();
                if ((education.getGraduation()!=null) && (!education.getGraduation().equals("")))
                    hs+="\n"+JbsL10N.getString("JobApplication.graduation")+": "+education.getGraduation();
                       
                line.put("jaDetail.lineDetails",hs);
               
                lines.add(line);
            }
View Full Code Here

Examples of org.jabusuite.address.employee.jobassignment.JaEducation

public class ColEducationEntries extends ColVitaEntries {
    private static final long serialVersionUID = 1L;

    @Override
    protected JbsObject createDataObject() {
        return new JaEducation();
    }
View Full Code Here

Examples of org.jabusuite.address.employee.jobassignment.JaEducation

        //we have to fill the set manually.
        List<JaEducation> education = new ArrayList<JaEducation>();
        if (this.getJaEntries()!=null) {
            Iterator<JbsObject> it = this.getJaEntries(true).iterator();
            while (it.hasNext()) {
                JaEducation experience = (JaEducation)it.next();
                experience.setJobAssignment(jobAssignment);
                education.add(experience);
            }
        }
        return education;
    }
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.