Package org.jabusuite.address.employee

Examples of org.jabusuite.address.employee.JobGroup


            BufferedReader in = new BufferedReader(new FileReader(fileName));
            String zeile = null;
            while ((zeile = in.readLine()) != null) {
                if (zeile.startsWith("<a href=\"/berufe")) {
                    String jobName = getJobName(zeile);
                    JobGroup jobGroup = new JobGroup();
                    jobGroup.setName(ClientGlobals.getMainDbLanguage(), jobName);
                    try {
                        long groupCount = jobGroups.getDatasetCount("UPPER(n.name) LIKE '"+jobName.toUpperCase()+"'", ClientGlobals.getUser(), ClientGlobals.getCompany());
                        if (groupCount==0) {
                            logger.info(jobName);
                            jobGroups.createDataset(jobGroup, ClientGlobals.getUser(), group, ClientGlobals.getCompany());
View Full Code Here


            return 1;
        }

        public Object getValueAt(int column, int row) {
            if (row < getJbsObjects().size()) {
                JobGroup jobGroup = (JobGroup) getJbsObjects().get(row);
               
                switch (column) {
                    case 0:
                        String name = jobGroup.getName(ClientGlobals.getMainDbLanguage());
                        if (name == null) {
                            name = "";
                        }
                        return name;
                    default:
View Full Code Here

   
    protected JbsLangTextField txName;

    public PnJobGroupEdit() {
        super(DlgState.dsInsert);
        this.setJobGroup(new JobGroup());
    }
View Full Code Here

        this.setPnEditJbsObject(new PnJobGroupEdit());
    }

    @Override
    public void createJbsBaseObject() {
        this.setJbsBaseObject(new JobGroup());
    }
View Full Code Here

TOP

Related Classes of org.jabusuite.address.employee.JobGroup

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.