Package org.adfemg.datacontrol.demo.persist

Examples of org.adfemg.datacontrol.demo.persist.Job


    }

    private List<Job> jobs(List<Map<String, String>> values) {
        List<Job> retval = new ArrayList<Job>(values.size());
        for (Map<String,String> val : values) {
            Job job = new Job();
            job.setId(val.get("JOB_ID"));
            job.setTitle(val.get("JOB_TITLE"));
            job.setMinSalary(Double.parseDouble(val.get("MIN_SALARY")));
            job.setMaxSalary(Double.parseDouble(val.get("MAX_SALARY")));
            retval.add(job);
        }
        return retval;
    }
View Full Code Here

TOP

Related Classes of org.adfemg.datacontrol.demo.persist.Job

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.