Package com.cibuddy.project.configuration.jaxb.v1_0.setup

Examples of com.cibuddy.project.configuration.jaxb.v1_0.setup.ProjectType


                    return StatusAction.OFF;
                }
            }
            Iterator<ColorIndicator> ciIterator = indicatorXMLConfig.getAction().iterator();
            while (ciIterator.hasNext()) {
                ColorIndicator ci = ciIterator.next();
                String condition = ci.getCondition();
                if (condition.equalsIgnoreCase("default")) {
                    String indicate = ci.getIndicate();
                    return StatusAction.get(indicate);
                } else {
                    // obtains the list of BuildStatus objects from their string representations
                    // that are used to match a certain "action" to indicate
                    List<BuildStatus> expStati = getBuildStatusListFromStrings(ci.getStatus());
                    if (checkCondition(ci.getCondition(), expStati, result)) {
                        String indicate = ci.getIndicate();
                        return StatusAction.get(indicate);
                    }
                }
            }
        } catch (Exception ex) {
View Full Code Here


        return packageName;
    }

    @Override
    Config getRootTypeInstance() {
        return new Config();
    }
View Full Code Here

    public List<IProject> getProjects() throws ProjectSetupException{
        List<IProject> projects = new ArrayList<IProject>();
        // assign the projects (this might fail due to missing server(s) f.i.
        Iterator<ProjectType> iter = xfd.getProject().iterator();
        while(iter.hasNext()){
            ProjectType pt = iter.next();
            IProject tempProject = null;
            if(pt.getServer() != null) {
                tempProject = getProject(pt.getServer(),pt);
            } else {
                tempProject = getProject(xfd.getServer(),pt);
            }
            if(tempProject != null){
                projects.add(tempProject);
View Full Code Here

        return packageName;
    }

    @Override
    Setup getRootTypeInstance() {
        return new Setup();
    }
View Full Code Here

TOP

Related Classes of com.cibuddy.project.configuration.jaxb.v1_0.setup.ProjectType

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.