Package tool.builder.resource

Examples of tool.builder.resource.RepositoryComponent


        }
        Matcher compMatcher = changedComps.matcher(line);
        if (compMatcher.find()){
          String name = compMatcher.group(1);
          String statusString = compMatcher.group(2);
          comps.put(currentPlan + "." + name, new RepositoryComponent(currentPlan, name, statusString));
        }
      }
      return comps;
  }
View Full Code Here


          }, IResource.DEPTH_INFINITE);
          IProgressMonitor subMonitor = SubMonitor.convert(monitor, components.size());
          for (IFile file : components){
            String key = file.getParent().getName() + "." + file.getName().substring(0, file.getName().lastIndexOf('.'));
            subMonitor.subTask(key);
            RepositoryComponent comp = list.get(key);
            if (comp != null) {
              RepositoryPropertiesManager.addRepositoryStateProperty(file, comp.getState());
            } else {
              RepositoryPropertiesManager.addRepositoryStateProperty(file, RepositoryComponent.NOT_IN_REPOSITORY);
            }
            subMonitor.worked(1);
          }
View Full Code Here

TOP

Related Classes of tool.builder.resource.RepositoryComponent

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.