Examples of ProjectType


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

    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

Examples of com.netthreads.mavenize.project.ProjectType

                    logger.error("Can't process argument, " + arg + ", " + e.getMessage());
                }
            }

            // Project type.
            ProjectType projectType = ProjectTypeFactory.instance().getProjectType(projectTypeName);

            // Execute conversion.
            try
            {
                if (isInput && isOutput)
View Full Code Here

Examples of edu.brown.utils.ProjectType

    }
   
    @SuppressWarnings("unchecked")
    public static <T extends AbstractFixedEstimator> T factory(PartitionEstimator p_estimator, CatalogContext catalogContext) {
        AbstractFixedEstimator estimator = null;
        ProjectType ptype = ProjectType.get(catalogContext.database.getProject());
        switch (ptype) {
            case TPCC:
                estimator = new FixedTPCCEstimator(p_estimator);
                break;
            case TM1:
View Full Code Here

Examples of edu.brown.utils.ProjectType

            ArgumentsParser.PARAM_WORKLOAD,
            ArgumentsParser.PARAM_WORKLOAD_OUTPUT
        );
        String output_path = args.getParam(ArgumentsParser.PARAM_WORKLOAD_OUTPUT);
        assert(output_path != null);
        ProjectType type = args.catalog_type;
       
        updateTraceIds(args.catalog_db, args.workload, output_path);
       
       
//        // Fix the workload!
View Full Code Here

Examples of edu.brown.utils.ProjectType

        ArgumentsParser args = ArgumentsParser.load(vargs);
        assert (args.stats != null);

        String output_path = args.getParam(ArgumentsParser.PARAM_STATS_OUTPUT);
        assert (output_path != null);
        ProjectType project_type = args.catalog_type;

        // Fix the catalog!
        populateStatistics(project_type, args.catalog_db, args.stats);

        //
View Full Code Here

Examples of edu.brown.utils.ProjectType

    /**
     * testGetProcedure
     */
    @Test
    public void testGetProcedure() throws Exception {
        ProjectType type = ProjectType.TPCC;
        this.bt.setUp(type);
        CatalogContext catalogContext = this.bt.getCatalogContext();
        assertNotNull(type.toString(), catalogContext);
       
        Procedure proc0, proc1;
       
        // Regular Procedure
        proc0 = this.bt.getProcedure(catalogContext.database, neworder.class);
View Full Code Here

Examples of edu.stanford.bmir.protege.web.client.rpc.data.ProjectType

        return projectDescriptionTextArea.getText().trim();
    }

    public ProjectType getProjectType() {
        // TODO: FIX!!!
        return new ProjectType("OWL Project");
    }
View Full Code Here

Examples of edu.stanford.bmir.protege.web.client.rpc.data.ProjectType

        ProjectManagerServiceAsync projectManagerService = GWT.create(ProjectManagerService.class);
        UserId userId = Application.get().getUserId();
        DocumentId documentId = result.getDocumentId();
        String projectName = data.getProjectSettings().getProjectName();
        String projectDescription = data.getProjectSettings().getProjectDescription();
        ProjectType projectType = data.getProjectSettings().getProjectType();
        NewProjectSettings newProjectSettings = new NewProjectSettings(userId, projectName, projectDescription, projectType, documentId);

        projectManagerService.createNewProject(newProjectSettings, new AsyncCallback<ProjectDetails>() {
            public void onFailure(Throwable caught) {
                UIUtil.hideLoadProgessBar();
View Full Code Here

Examples of jSimMacs.data.ProjectType

    projectTypes = new ArrayList<ProjectType>();
    File projectTypeDir = new File(JSimConstants.PROJECTTYPESPATH);
    if (!projectTypeDir.exists())
      projectTypeDir.mkdir();
    File[] fileList = projectTypeDir.listFiles(new XMLFileFilter());
    ProjectType type = createEmptyProjectType();// new
    // ProjectType(JSimConstants.EMPTYPROJECTSTRING);
    projectTypes.add(type);
    for (int i = 0; i < fileList.length; i++) {
      type = new ProjectType();
      projectTypeIniReader = new XMLSAXReader(fileList[i],
          new ProjectTypeIniHandler(type));
      URL schemaURL = this.getClass().getResource(
          JSimConstants.PROJECTTYPESCHEMAFILE);
      try {
View Full Code Here

Examples of jSimMacs.data.ProjectType

  /**
   * Creates the Empty Project Type
   * @return Empty Project type
   */
  private ProjectType createEmptyProjectType() {
    ProjectType type = new ProjectType(JSimConstants.EMPTYPROJECTSTRING);
    type.getCommandData().add(new Pdb2gmxData());
    type.getCommandData().add(new EditconfData());
    type.getCommandData().add(new GenboxData());
    type.getCommandData().add(new SimStepData());
    return type;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.