Temporary commit before merging with Simon's modifications on

RuleFailure
This commit is contained in:
Fabrice Bellingard 2011-04-11 16:50:19 +02:00
parent 142cc34228
commit 73a7647736
3 changed files with 47 additions and 0 deletions

View File

@ -214,6 +214,7 @@ public class CorePlugin extends SonarPlugin {
extensions.add(NoSonarFilter.class);
extensions.add(DirectoriesDecorator.class);
extensions.add(FilesDecorator.class);
extensions.add(ReviewsDecorator.class);
// time machine
extensions.add(TendencyDecorator.class);

View File

@ -0,0 +1,46 @@
/*
* Sonar, open source software quality management tool.
* Copyright (C) 2008-2011 SonarSource
* mailto:contact AT sonarsource DOT com
*
* Sonar is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* Sonar is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sonar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02
*/
package org.sonar.plugins.core.sensors;
import org.sonar.api.batch.Decorator;
import org.sonar.api.batch.DecoratorContext;
import org.sonar.api.batch.DependedUpon;
import org.sonar.api.resources.Project;
import org.sonar.api.resources.Resource;
/**
* Decorator that currently only closes a review when its corresponding violation has been fixed.
*/
@DependedUpon("ViolationPersisterDecorator")
public class ReviewsDecorator implements Decorator {
public boolean shouldExecuteOnProject(Project project) {
return true;
}
public void decorate(Resource resource, DecoratorContext context) {
//
}
@Override
public String toString() {
return getClass().getSimpleName();
}
}