Package clips.delegate.job

Examples of clips.delegate.job.JobLocal$DangersInfo


     * @throws ClipsException
     */
    public JobLocal getLastJob() throws ClipsException {
        try {
            JobDetails jobDetails = getBean().getLastJob();
            return (jobDetails != null ? new JobLocal(jobDetails, getAuditListener()) : null);
        } catch (Exception ex) {
            clearBean();
            throw new ClipsException("Не удалось получить последнее место работы клиента",ex);
        }
    }
View Full Code Here


        return false;
    }

    @Override
    public Object getValueAt(int r, int c) {
        JobLocal jobLocal = jobList.get(r);       
        try {
            switch (c) {
                case COL_JOB: {   //предприятие, на котором работал
                    DirectoryEnterpriseItem enterprise = jobLocal.getEnterprise();
                    return enterprise.getFullTitle(false);
                }
                case COL_PROFESSION: {
                    return jobLocal.getProfession();
                }
                case COL_BEGIN: {
                    return jobLocal.getBegin();
                }
                case COL_END: {
                    return jobLocal.getEnd();
                }
                default: {
                    throw new RuntimeException("Column out of range");
                }
            }
View Full Code Here

TOP

Related Classes of clips.delegate.job.JobLocal$DangersInfo

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.