Package org.sonar.api.batch

Examples of org.sonar.api.batch.Initializer


    // End of maven phase
    profiler.onMavenPhase(mavenEvent(false));
  }

  private void initializerPhase(PhasesSumUpTimeProfiler profiler) throws InterruptedException {
    Initializer initializer = new FakeInitializer();
    // Start of initializer phase
    profiler.onInitializersPhase(initializersEvent(true));
    // Start of an initializer
    profiler.onInitializerExecution(initializerEvent(initializer, true));
    clock.sleep(7);
View Full Code Here

TOP

Related Classes of org.sonar.api.batch.Initializer

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.