aboutsummaryrefslogtreecommitdiffstats
path: root/org.jacoco.report.test/src/org/jacoco/report/internal
diff options
context:
space:
mode:
authorMarc R. Hoffmann <hoffmann@mountainminds.com>2011-01-14 11:30:11 +0000
committerMarc R. Hoffmann <hoffmann@mountainminds.com>2011-01-14 11:30:11 +0000
commit2ccb2fc041b228cec72a256a64bc992f4f7bc331 (patch)
treea89ac138fc4190516a3a0bfc7cc7cf1cd2ea8597 /org.jacoco.report.test/src/org/jacoco/report/internal
parentb05619921551903a81b242b41d196b41c70e770f (diff)
downloadplatform_external_jacoco-2ccb2fc041b228cec72a256a64bc992f4f7bc331.tar.gz
platform_external_jacoco-2ccb2fc041b228cec72a256a64bc992f4f7bc331.tar.bz2
platform_external_jacoco-2ccb2fc041b228cec72a256a64bc992f4f7bc331.zip
Remove obsolete JavaDoc tags from headers.
Diffstat (limited to 'org.jacoco.report.test/src/org/jacoco/report/internal')
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLDocumentTest.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLSupport.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/LinkableStub.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/NodePageTest.java7
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/ReportPageTest.java6
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/SessionsPageTest.java6
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceFilePageTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceHighlighterTest.java5
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ResourcesTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/StylesTest.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/BarColumnTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/CounterColumnTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/LabelColumnTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/PercentageColumnTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/SortIndexTest.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/html/table/TableTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/xml/LocalEntityResolver.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLDocumentTest.java4
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLElementTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLReportNodeHandlerTest.java3
-rw-r--r--org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLSupport.java3
22 files changed, 0 insertions, 84 deletions
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLDocumentTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLDocumentTest.java
index 3a840fb9..f2b5a295 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLDocumentTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLDocumentTest.java
@@ -17,14 +17,10 @@ import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.StringWriter;
-import org.jacoco.report.internal.html.HTMLDocument;
import org.junit.Test;
/**
* Unit tests for {@link HTMLDocument}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class HTMLDocumentTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java
index fb7d5d49..f576f7c6 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLElementTest.java
@@ -16,15 +16,11 @@ import static org.junit.Assert.assertEquals;
import java.io.IOException;
import java.io.StringWriter;
-import org.jacoco.report.internal.html.HTMLElement;
import org.junit.Before;
import org.junit.Test;
/**
* Unit tests for {@link HTMLElement}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class HTMLElementTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLSupport.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLSupport.java
index f91a3cab..b5ba7171 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLSupport.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/HTMLSupport.java
@@ -17,9 +17,6 @@ import org.jacoco.report.internal.xml.XMLSupport;
/**
* Support for verifying XHTML documents.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class HTMLSupport extends XMLSupport {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/LinkableStub.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/LinkableStub.java
index 0d09fcd2..805cb072 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/LinkableStub.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/LinkableStub.java
@@ -12,13 +12,9 @@
package org.jacoco.report.internal.html;
import org.jacoco.report.ReportOutputFolder;
-import org.jacoco.report.internal.html.ILinkable;
/**
* Stub implementation for {@link ILinkable}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class LinkableStub implements ILinkable {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/NodePageTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/NodePageTest.java
index b3a4c227..31040533 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/NodePageTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/NodePageTest.java
@@ -24,10 +24,6 @@ import org.jacoco.report.ILanguageNames;
import org.jacoco.report.IReportVisitor;
import org.jacoco.report.MemoryMultiReportOutput;
import org.jacoco.report.ReportOutputFolder;
-import org.jacoco.report.internal.html.HTMLElement;
-import org.jacoco.report.internal.html.IHTMLReportContext;
-import org.jacoco.report.internal.html.ILinkable;
-import org.jacoco.report.internal.html.NodePage;
import org.jacoco.report.internal.html.index.IIndexUpdate;
import org.jacoco.report.internal.html.resources.Resources;
import org.jacoco.report.internal.html.resources.Styles;
@@ -38,9 +34,6 @@ import org.junit.Test;
/**
* Unit tests for {@link ReportPage}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class NodePageTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/ReportPageTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/ReportPageTest.java
index 656adda3..20f88ee4 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/ReportPageTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/ReportPageTest.java
@@ -19,9 +19,6 @@ import java.util.Locale;
import org.jacoco.report.ILanguageNames;
import org.jacoco.report.MemoryMultiReportOutput;
import org.jacoco.report.ReportOutputFolder;
-import org.jacoco.report.internal.html.HTMLElement;
-import org.jacoco.report.internal.html.IHTMLReportContext;
-import org.jacoco.report.internal.html.ILinkable;
import org.jacoco.report.internal.html.index.IIndexUpdate;
import org.jacoco.report.internal.html.resources.Resources;
import org.jacoco.report.internal.html.resources.Styles;
@@ -33,9 +30,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link ReportPage}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class ReportPageTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SessionsPageTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SessionsPageTest.java
index b14fb14e..3fad3e4a 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SessionsPageTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SessionsPageTest.java
@@ -26,9 +26,6 @@ import org.jacoco.report.ILanguageNames;
import org.jacoco.report.JavaNames;
import org.jacoco.report.MemoryMultiReportOutput;
import org.jacoco.report.ReportOutputFolder;
-import org.jacoco.report.internal.html.HTMLElement;
-import org.jacoco.report.internal.html.IHTMLReportContext;
-import org.jacoco.report.internal.html.ILinkable;
import org.jacoco.report.internal.html.index.ElementIndex;
import org.jacoco.report.internal.html.index.IIndexUpdate;
import org.jacoco.report.internal.html.resources.Resources;
@@ -41,9 +38,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link SessionsPage}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class SessionsPageTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceFilePageTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceFilePageTest.java
index 35bd84f8..849fb49c 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceFilePageTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceFilePageTest.java
@@ -38,9 +38,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link SourceFilePage}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class SourceFilePageTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceHighlighterTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceHighlighterTest.java
index 509df000..9f65a3e6 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceHighlighterTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/SourceHighlighterTest.java
@@ -20,8 +20,6 @@ import java.util.Locale;
import org.jacoco.core.analysis.ICoverageNode.ElementType;
import org.jacoco.core.internal.analysis.CounterImpl;
import org.jacoco.core.internal.analysis.SourceNodeImpl;
-import org.jacoco.report.internal.html.HTMLDocument;
-import org.jacoco.report.internal.html.HTMLElement;
import org.jacoco.report.internal.html.resources.Styles;
import org.junit.Before;
import org.junit.Test;
@@ -29,9 +27,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link SourceHighlighter}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class SourceHighlighterTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ResourcesTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ResourcesTest.java
index a04f1f55..56d52022 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ResourcesTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/ResourcesTest.java
@@ -23,9 +23,6 @@ import org.junit.Test;
/**
* Unit tests for {@link Resources}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class ResourcesTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/StylesTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/StylesTest.java
index 38477a4c..503021db 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/StylesTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/StylesTest.java
@@ -13,14 +13,10 @@ package org.jacoco.report.internal.html.resources;
import static org.junit.Assert.assertEquals;
-import org.jacoco.report.internal.html.resources.Styles;
import org.junit.Test;
/**
* Unit tests for {@link Styles}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class StylesTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/BarColumnTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/BarColumnTest.java
index 2701339a..8c1fc26e 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/BarColumnTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/BarColumnTest.java
@@ -36,9 +36,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link BarColumn}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class BarColumnTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/CounterColumnTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/CounterColumnTest.java
index 0fb08a4b..8430fbcf 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/CounterColumnTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/CounterColumnTest.java
@@ -38,9 +38,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link CounterColumn}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class CounterColumnTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/LabelColumnTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/LabelColumnTest.java
index 00c9b81f..8c8fe7fa 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/LabelColumnTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/LabelColumnTest.java
@@ -30,9 +30,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link LabelColumn}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class LabelColumnTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/PercentageColumnTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/PercentageColumnTest.java
index c98ed210..263a3998 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/PercentageColumnTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/PercentageColumnTest.java
@@ -35,9 +35,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link PercentageColumn}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class PercentageColumnTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/SortIndexTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/SortIndexTest.java
index b2e558b6..01643770 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/SortIndexTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/SortIndexTest.java
@@ -19,15 +19,11 @@ import java.util.Collections;
import java.util.Comparator;
import java.util.List;
-import org.jacoco.report.internal.html.table.SortIndex;
import org.junit.Before;
import org.junit.Test;
/**
* Unit tests for {@link SortIndex}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class SortIndexTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/TableTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/TableTest.java
index 0cd1897d..b72956cc 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/TableTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/TableTest.java
@@ -38,9 +38,6 @@ import org.w3c.dom.Document;
/**
* Unit tests for {@link Table}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class TableTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/LocalEntityResolver.java b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/LocalEntityResolver.java
index 97197717..7a786d65 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/LocalEntityResolver.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/LocalEntityResolver.java
@@ -20,9 +20,6 @@ import org.xml.sax.SAXException;
/**
* Loader for local DTD definitions to avoid network access.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
class LocalEntityResolver implements EntityResolver {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLDocumentTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLDocumentTest.java
index aea50f6d..5d7c4ba8 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLDocumentTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLDocumentTest.java
@@ -18,14 +18,10 @@ import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.StringWriter;
-import org.jacoco.report.internal.xml.XMLDocument;
import org.junit.Test;
/**
* Unit tests for {@link XMLDocument}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class XMLDocumentTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLElementTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLElementTest.java
index 580bd572..2fef4f10 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLElementTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLElementTest.java
@@ -21,9 +21,6 @@ import org.junit.Test;
/**
* Unit tests for {@link XMLElement}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class XMLElementTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLReportNodeHandlerTest.java b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLReportNodeHandlerTest.java
index 9dc2c6ed..b873252e 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLReportNodeHandlerTest.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLReportNodeHandlerTest.java
@@ -32,9 +32,6 @@ import org.xml.sax.SAXException;
/**
* Unit tests for {@link XMLReportNodeHandler}.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class XMLReportNodeHandlerTest {
diff --git a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLSupport.java b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLSupport.java
index 3aa08270..ca6b7615 100644
--- a/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLSupport.java
+++ b/org.jacoco.report.test/src/org/jacoco/report/internal/xml/XMLSupport.java
@@ -33,9 +33,6 @@ import org.xml.sax.SAXParseException;
/**
* Test utility to parse, validate and query XML documents.
- *
- * @author Marc R. Hoffmann
- * @version $qualified.bundle.version$
*/
public class XMLSupport {