![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.maven.plugins.pmd.model.SuppressedViolation Maven / Gradle / Ivy
/*
=================== DO NOT EDIT THIS FILE ====================
Generated by Modello 2.4.0,
any modifications will be overwritten.
==============================================================
*/
package org.apache.maven.plugins.pmd.model;
/**
* Class SuppressedViolation.
*
* @version $Revision$ $Date$
*/
@SuppressWarnings( "all" )
public class SuppressedViolation
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field filename.
*/
private String filename;
/**
* Field suppressionType.
*/
private String suppressionType;
/**
* Field ruleMessage.
*/
private String ruleMessage;
/**
* Field userMessage.
*/
private String userMessage;
//-----------/
//- Methods -/
//-----------/
/**
* Get the filename field.
*
* @return String
*/
public String getFilename()
{
return this.filename;
} //-- String getFilename()
/**
* Get the ruleMessage field.
*
* @return String
*/
public String getRuleMessage()
{
return this.ruleMessage;
} //-- String getRuleMessage()
/**
* Get the suppressionType field.
*
* @return String
*/
public String getSuppressionType()
{
return this.suppressionType;
} //-- String getSuppressionType()
/**
* Get the userMessage field.
*
* @return String
*/
public String getUserMessage()
{
return this.userMessage;
} //-- String getUserMessage()
/**
* Set the filename field.
*
* @param filename a filename object.
*/
public void setFilename( String filename )
{
this.filename = filename;
} //-- void setFilename( String )
/**
* Set the ruleMessage field.
*
* @param ruleMessage a ruleMessage object.
*/
public void setRuleMessage( String ruleMessage )
{
this.ruleMessage = ruleMessage;
} //-- void setRuleMessage( String )
/**
* Set the suppressionType field.
*
* @param suppressionType a suppressionType object.
*/
public void setSuppressionType( String suppressionType )
{
this.suppressionType = suppressionType;
} //-- void setSuppressionType( String )
/**
* Set the userMessage field.
*
* @param userMessage a userMessage object.
*/
public void setUserMessage( String userMessage )
{
this.userMessage = userMessage;
} //-- void setUserMessage( String )
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy