Package fr.imag.adele.apam.declarations.repository

Examples of fr.imag.adele.apam.declarations.repository.ComponentIndex


   
    
    public ApamComponentRepository(RepositoryAdmin manager, List<URL> repositories, Reporter reporter) throws Exception {
     
      this.reporter   = reporter;
        this.cache     = new ComponentIndex();

     
        if (repositories == null || repositories.isEmpty()) {
          info("No repository URLs specified");
          this.manager = null;
View Full Code Here


    this.artifact    = artifact;
    this.apamVersion  = apamVersion;
    this.reporter     = reporter;
   
    this.components    = new ArrayList<ComponentDeclaration>();
    this.index      = new ComponentIndex();
    this.classes    = new HashSet<String>();
   
    load();
  }
View Full Code Here

  public ValidationContext(Repository repository) {
   
    this.repository    = repository;
   
    this.loaded      = new ArrayList<ComponentDeclaration>();
    this.originalCache  = new ComponentIndex();
    this.effectiveCache  = new ComponentIndex();
  }
View Full Code Here

TOP

Related Classes of fr.imag.adele.apam.declarations.repository.ComponentIndex

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.