All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.puppycrawl.tools.checkstyle.filters.SuppressionFilter Maven / Gradle / Ivy

////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2015 the original author or authors.
//
// This library 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 2.1 of the License, or (at your option) any later version.
//
// This library 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 this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
////////////////////////////////////////////////////////////////////////////////

package com.puppycrawl.tools.checkstyle.filters;

import java.util.Objects;

import com.puppycrawl.tools.checkstyle.api.AuditEvent;
import com.puppycrawl.tools.checkstyle.api.AutomaticBean;
import com.puppycrawl.tools.checkstyle.api.CheckstyleException;
import com.puppycrawl.tools.checkstyle.api.Filter;
import com.puppycrawl.tools.checkstyle.api.FilterSet;

/**
 * 

* This filter accepts AuditEvents according to file, check, line, and * column, as specified in a suppression file. *

* @author Rick Giles */ public class SuppressionFilter extends AutomaticBean implements Filter { /** Set of individual suppresses. */ private FilterSet filters = new FilterSet(); /** * Loads the suppressions for a file. * @param fileName name of the suppressions file. * @throws CheckstyleException if there is an error. */ public void setFile(String fileName) throws CheckstyleException { filters = SuppressionsLoader.loadSuppressions(fileName); } @Override public boolean accept(AuditEvent event) { return filters.accept(event); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } final SuppressionFilter suppressionFilter = (SuppressionFilter) obj; return Objects.equals(filters, suppressionFilter.filters); } @Override public int hashCode() { return Objects.hash(filters); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy