Examples of Project


Examples of com.gwcworld.core.bean.Project

   
    int idExhibitor = WebUtil.parameter2int(request.getParameter("idExhibitor"));
    int idProject = (Integer)request.getSession().getAttribute(Constants.PROJECT_ID_FOR_EXHIBITOR_VIEW);
   
    Exhibitor exhibitor = exhibitorService.getById(idExhibitor);
    Project project = projectService.getById(idProject);
       
    if(exhibitor!=null && project!=null){
     
      List<Map[]> allMaps = mapService.getAllByProjectWithUniqueName(project, MAX_RESULT);
      List<Map> maps = new ArrayList<Map>();
View Full Code Here

Examples of com.hlcl.rql.as.Project

//
//      CmsClient client = new CmsClient(logonGuid);
//      Project project = client.getProject(sessionKey, projectGuid);
     
      client = new CmsClient(new PasswordAuthentication("testuser_compass", "testuser368"));
      Project project = client.getProjectByName("hip.hlcl.com");
      System.out.println(client.getConnectedUser().getName());

      // check different pages
      String[] pageIds = {"127290", "624522", "656879", "7375"};
      for (int i = 0; i < pageIds.length; i++) {
        Page startPg = project.getPageById(pageIds[i]);
        System.out.println(startPg.getInfoText());
       
        // build helper class
        PublishPagePolicies policies = new PublishPagePolicies(startPg);
//        System.out.println(policies.getPageProjectVariantNameSuffixes());
View Full Code Here

Examples of com.ibm.ivj.util.base.Project

     * @param projectName String project name
     */
    public static VAJBuildInfo loadBuildData(String projectName) {
        VAJBuildInfo result = null;
        try {
            Project project =
                VAJLocalUtil.getWorkspace().loadedProjectNamed(projectName);
            if (project.testToolRepositoryData(TOOL_DATA_KEY)) {
                ToolData td = project.getToolRepositoryData(TOOL_DATA_KEY);
                String data = (String) td.getData();
                result = VAJBuildInfo.parse(data);
            } else {
                result = new VAJBuildInfo();
            }
View Full Code Here

Examples of com.intellij.openapi.project.Project

              Icons.ADD_DEPENDENCY);
    }

    @Override
    public void update(final AnActionEvent pEvent) {
        final Project project = getProject(pEvent);
        if (project == null) {
            pEvent.getPresentation().setEnabled(false);
            return;
        }
View Full Code Here

Examples of com.k42b3.kadabra.record.Project

  {
    try
    {
      this.log = new ArrayList<String>();

      Project project = Project.getProjectById(projectId);

      project.getRightHandler().loadMap();

      this.mirrorFolder(project, true, "");

      console.printf("Found " + this.log.size() + " changes%n");

      project.close();
    }
    catch(Exception e)
    {
      handleException(e);
    }
View Full Code Here

Examples of com.microsoft.tfs.core.clients.workitem.project.Project

            LOG.error("Please configure the tracker properly before trying to submit a defect.");
            return null;
        }

        try {
            Project project = client.getProjects().get(projectName);

            return project == null ? null : String.valueOf(project.getID());

        } catch (UnauthorizedException | TFSUnauthorizedException e) {
            LOG.warn("Ran into TFSUnauthorizedException while trying to retrieve products.");
            return null;
        } finally {
View Full Code Here

Examples of com.nexse.techpjmgmt.domain.Project

        }

        loaded=true;
*/
        if (!loaded) {
            Project project = new Project();
            project.setName("PSG");
            project.setDescription("Piattaforma servizi e giochi");
            project.setPjyear(2009);
            project.persist();
            Project project1 = new Project();
            project1.setName("PSG1");
            project1.setDescription("Piattaforma servizi e giochi1");
            project1.setPjyear(2009);
            project1.persist();
            Project project2 = new Project();
            project2.setName("PSG2");
            project2.setDescription("Piattaforma servizi e giochi2");
            project2.setPjyear(2009);
            project2.persist();
        }

        loaded=true;

    }
View Full Code Here

Examples of com.ordobill.webapp.beans.Project

    public ActionForward list(ActionMapping mapping,
                               ActionForm form,
                               HttpServletRequest request,
                               HttpServletResponse response) throws Exception {
       
        Project projectForm = (Project)form;
        HttpSession session = request.getSession();
       
        //2013.01.29 list 페이지 checkbox 삭제 추가
        if (!projectForm.getKeyArr().equals(null)) {
          ActionMessages msg = new ActionMessages();
            int message = -1;
            String val = projectForm.getKeyArr();
          StringTokenizer strT = new StringTokenizer(val , "||");
            while(strT.hasMoreTokens()){
               String tempStr = strT.nextToken();
               if(!tempStr.equals("") && !tempStr.equals(null)){
                 Project _Project = new Project();
                 _Project.setProUid(Integer.parseInt(tempStr.trim()));
                 message = (Integer) sqlMap.delete("Project.projectDelete", _Project)// PROJECT
                    sqlMap.delete("Project.modelingDelete", _Project); // MODELING
                    sqlMap.delete("Project.figuresDelete", _Project)// FIGURES
                    if(message == 0){
                       msg.add("message", new ActionMessage("삭제에 실패했습니다."));
View Full Code Here

Examples of com.peusoft.ptcollect.core.persistance.domain.Project

        User user = configSrv.getUser();

        // create data
        List<AbstractDomainObject<?>> to_delete = new ArrayList<AbstractDomainObject<?>>();
        List<AbstractDomainObject<?>> objects = new ArrayList<AbstractDomainObject<?>>();
        Project p = new Project();
        p.setProjectState(ProjectState.OPENED);
        p.setProjectName("TestProject");
        p.setProjectNumber("00001");
        p.setProjectPeriod(new DayPeriod());
        p.setBudget(new BigDecimal("100.00"));
        objects.add(p);
        to_delete.add(0, p);
        ProjectActivity pa = new ProjectActivity();
        pa.setProject(p);
        pa.setProjectActivityName("TestProjectActivity");
View Full Code Here

Examples of com.projectlibre.pm.tasks.Project

    //Identity the type of conversion. It will be used AssignmentConverter
    if (state.isMspdi())
      state.setMpxTimephasedMap(((ImprovedMSPDIReader)reader).getTimephasedMap());
    else state.setMpxTimephasedMap(new HashMap<ResourceAssignment,List<TimephasedDataType>>());

    Project project=new Project();

    importOptions(project);
    progress.updateProgress(0.3f, "Options converted");
    importCalendars(project);
    progress.updateProgress(0.4f, "Calendars converted");
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.