net.sourceforge.pmd.renderers
Class TextRenderer

java.lang.Object
  extended by net.sourceforge.pmd.AbstractPropertySource
      extended by net.sourceforge.pmd.renderers.AbstractRenderer
          extended by net.sourceforge.pmd.renderers.AbstractIncrementingRenderer
              extended by net.sourceforge.pmd.renderers.TextRenderer
All Implemented Interfaces:
PropertySource, Renderer

public class TextRenderer
extends AbstractIncrementingRenderer

Renderer to simple text format.


Field Summary
static String NAME
           
 
Fields inherited from class net.sourceforge.pmd.renderers.AbstractIncrementingRenderer
errors, suppressed
 
Fields inherited from class net.sourceforge.pmd.renderers.AbstractRenderer
description, name, propertyDefinitions, showSuppressedViolations, writer
 
Fields inherited from class net.sourceforge.pmd.AbstractPropertySource
propertyDescriptors, propertyValuesByDescriptor
 
Constructor Summary
TextRenderer()
           
 
Method Summary
 String defaultFileExtension()
          Return the default filename extension to use.
 void end()
          This method is at the very end of the Rendering process, after Renderer.renderFileReport(Report).
 void renderFileViolations(Iterator<RuleViolation> violations)
          Render a series of RuleViolations.
 void start()
          This method is called before any source files are processed.
 
Methods inherited from class net.sourceforge.pmd.renderers.AbstractIncrementingRenderer
renderFileReport, startFileAnalysis
 
Methods inherited from class net.sourceforge.pmd.renderers.AbstractRenderer
defineProperty, flush, getDescription, getName, getPropertyDefinitions, getWriter, isShowSuppressedViolations, setDescription, setName, setShowSuppressedViolations, setWriter
 
Methods inherited from class net.sourceforge.pmd.AbstractPropertySource
copyPropertyDescriptors, copyPropertyValues, definePropertyDescriptor, dysfunctionReason, getPropertiesByPropertyDescriptor, getProperty, getPropertyDescriptor, getPropertyDescriptors, hasDescriptor, ignoredProperties, setProperty, useDefaultValueFor, usesDefaultValues
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface net.sourceforge.pmd.PropertySource
definePropertyDescriptor, dysfunctionReason, getPropertiesByPropertyDescriptor, getProperty, getPropertyDescriptor, getPropertyDescriptors, hasDescriptor, ignoredProperties, setProperty, useDefaultValueFor, usesDefaultValues
 

Field Detail

NAME

public static final String NAME
See Also:
Constant Field Values
Constructor Detail

TextRenderer

public TextRenderer()
Method Detail

defaultFileExtension

public String defaultFileExtension()
Description copied from interface: Renderer
Return the default filename extension to use.

Returns:
String

start

public void start()
           throws IOException
This method is called before any source files are processed. The Renderer will have been fully initialized by the time this method is called, so the Writer and other state will be available.

Specified by:
start in interface Renderer
Overrides:
start in class AbstractIncrementingRenderer
Throws:
IOException

renderFileViolations

public void renderFileViolations(Iterator<RuleViolation> violations)
                          throws IOException
Render a series of RuleViolations.

Specified by:
renderFileViolations in class AbstractIncrementingRenderer
Parameters:
violations - The iterator of violations to render.
Throws:
IOException

end

public void end()
         throws IOException
This method is at the very end of the Rendering process, after Renderer.renderFileReport(Report).

Specified by:
end in interface Renderer
Overrides:
end in class AbstractIncrementingRenderer
Throws:
IOException


Copyright © 2002-2015 InfoEther. All Rights Reserved.