Package net.sourceforge.cruisecontrol

Examples of net.sourceforge.cruisecontrol.Project


    private void updateProjectMBeans() {
        LOG.debug("Updating project mbeans");
        if (server != null) {
            for (Iterator iterator = controller.getProjects().iterator(); iterator.hasNext();) {
                Project project = (Project) iterator.next();
                projectAdded(project);
            }
        }
    }
View Full Code Here


    private void updateProjectMBeans() {
        LOG.debug("Updating project mbeans");
        if (server != null) {
            for (Iterator iterator = controller.getProjects().iterator(); iterator.hasNext();) {
                Project project = (Project) iterator.next();
                projectAdded(project);
            }
        }
    }
View Full Code Here

                // version differences
                Object project = theServerProjects.get(index);
                ProjectBean projectBean = null;
               
                if ( project instanceof Project ) {
            Project theCurrentProject = (Project) theServerProjects.get(index);
            projectBean = new ProjectBean( this, theCurrentProject.getName() );
                }
                else if ( project instanceof ProjectConfig ) {
                    ProjectConfig theCurrentProject = (ProjectConfig) theServerProjects.get(index);
                    projectBean = new ProjectBean( this, theCurrentProject.getName() );
                }
               
        updateValues( projectBean );
       
        theProjects.add( projectBean );
View Full Code Here

        try {
      List theServerProjects = (List) getServerAttributeValue( "Projects" );
     
      for( int index = 0;index < theServerProjects.size(); index++ ) {
       
        Project theCurrentProject = (Project) theServerProjects.get(index);
       
        theProjects.add( new ProjectProxy( this, theCurrentProject ) );
      }
        }
        catch ( NullPointerException npe ) {
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.Project

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.