* @author Michel Hartmann * @copyright 2007-2010 Mayflower GmbH * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @version SVN: $Id$ * @link http://www.phpunit.de/ * @since File available since 0.1.0 */ /** * CbErrorCheckstyle * * @category PHP_CodeBrowser * @package PHP_CodeBrowser * @subpackage Plugins * @author Elger Thiele * @author Christopher Weckerle * @author Michel Hartmann * @copyright 2007-2010 Mayflower GmbH * @license http://www.opensource.org/licenses/bsd-license.php BSD License * @version Release: 1.0.2 * @link http://www.phpunit.de/ * @since Class available since 0.1.0 */ class CbErrorCheckstyle extends CbPluginsAbstract { /** * Name of this plugin. * Used to read issues from XML. * @var String */ public $pluginName = 'checkstyle'; /** * Name of the attribute that holds the number of the first line * of the issue. * @var String */ protected $_lineStartAttr = 'line'; /** * Name of the attribute that holds the number of the last line * of the issue. * @var String */ protected $_lineEndAttr = 'line'; /** * Name of the attribute that holds message of the issue. * @var String */ protected $_descriptionAttr = 'message'; /** * Name of the attribute that holds severity of the issue. * @var String */ protected $_severityAttr = 'severity'; /** * Default string to use as source for issue. * @var String */ protected $_source = 'Checkstyle'; }