1 package de.example.plugins.helloworld;
3 import org.sonar.plugins.java.api.CheckRegistrar;
5 import de.example.helloworld.checks.CheckList;
7 public class HelloWorldRulesCheckRegistrar implements CheckRegistrar {
10 public void register(RegistrarContext registrarContext) {
11 registrarContext.registerClassesForRepository(CheckList.REPOSITORY_KEY, CheckList.getJavaChecks(), CheckList.getJavaTestChecks());