Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

IsolatedLauncher.java 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * SonarQube Runner - Batch Interface
  3. * Copyright (C) 2011 SonarSource
  4. * sonarqube@googlegroups.com
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
  19. */
  20. package org.sonar.runner.batch;
  21. import java.util.List;
  22. import java.util.Properties;
  23. public interface IsolatedLauncher {
  24. void start(Properties properties, LogOutput logOutput, boolean preferCache);
  25. void stop();
  26. void execute(Properties properties);
  27. void execute(Properties properties, IssueListener listener);
  28. void syncProject(String projectKey);
  29. void executeOldVersion(Properties properties, List<Object> extensions);
  30. String getVersion();
  31. }