Rename OntheFlyRenderer to AbstractIncrementalRenderer.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@6562 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Ryan Gustafson committed 2008-10-06 03:12:43 +00:00
1 parent d1cb839b37
commit 34de466006
10 files changed
+11 -10

No files matched your search

+1
View File
@@ -324,6 +324,7 @@ The following is relatively complete list of the major changes (this may not be
Added - Renderer.isShowSuppressedViolations()
Renamed - Renderer.showSuppressedViolations(boolean) to Renderer.setShowSuppressedViolations(boolean)
Renamed - PapariTextRenderer to TextColorRenderer
Renamed - OntheFlyRenderer to AbstractIncrementalRenderer
PMD command line changes:
@@ -25,7 +25,7 @@ import net.sourceforge.pmd.RuleViolation;
* files. These are intended to be processed in the {@link #end()} method.
*/
// TODO Rename to AbstractIncrementalRenderer
public abstract class OnTheFlyRenderer extends AbstractRenderer {
public abstract class AbstractIncrementalRenderer extends AbstractRenderer {
/**
* Accumulated processing errors.
@@ -37,7 +37,7 @@ public abstract class OnTheFlyRenderer extends AbstractRenderer {
*/
protected List<Report.SuppressedViolation> suppressed = new LinkedList<Report.SuppressedViolation>();
public OnTheFlyRenderer(String name, String description, Properties properties) {
public AbstractIncrementalRenderer(String name, String description, Properties properties) {
super(name, description, properties);
}
@@ -15,7 +15,7 @@ import net.sourceforge.pmd.util.StringUtil;
/**
* Renderer to comma separated format.
*/
public class CSVRenderer extends OnTheFlyRenderer {
public class CSVRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "csv";
@@ -13,7 +13,7 @@ import net.sourceforge.pmd.RuleViolation;
/**
* Renderer to GNU Emacs parsable format.
*/
public class EmacsRenderer extends OnTheFlyRenderer {
public class EmacsRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "emacs";
@@ -17,7 +17,7 @@ import net.sourceforge.pmd.util.StringUtil;
/**
* Renderer to basic HTML format.
*/
public class HTMLRenderer extends OnTheFlyRenderer {
public class HTMLRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "html";
@@ -17,7 +17,7 @@ import net.sourceforge.pmd.RuleViolation;
/**
* Renderer for IntelliJ IDEA integration.
*/
public class IDEAJRenderer extends OnTheFlyRenderer {
public class IDEAJRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "ideaj";
@@ -26,7 +26,7 @@ import net.sourceforge.pmd.RuleViolation;
*
* @author Jeff Epstein, based upon <a href="EmacsRenderer.html">EmacsRenderer</a>, Tuesday, September 23, 2003
*/
public class TextPadRenderer extends OnTheFlyRenderer {
public class TextPadRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "textpad";
@@ -15,7 +15,7 @@ import net.sourceforge.pmd.RuleViolation;
/**
* Renderer to simple text format.
*/
public class TextRenderer extends OnTheFlyRenderer {
public class TextRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "text";
@@ -16,7 +16,7 @@ import net.sourceforge.pmd.RuleViolation;
* Renderer to another HTML format.
* @author Vladimir
*/
public class VBHTMLRenderer extends OnTheFlyRenderer {
public class VBHTMLRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "vbhtml";
@@ -18,7 +18,7 @@ import net.sourceforge.pmd.util.StringUtil;
/**
* Renderer to XML format.
*/
public class XMLRenderer extends OnTheFlyRenderer {
public class XMLRenderer extends AbstractIncrementalRenderer {
public static final String NAME = "xml";