aboutsummaryrefslogtreecommitdiff
path: root/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
diff options
context:
space:
mode:
Diffstat (limited to 'org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java')
-rw-r--r--org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java b/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
index 1373c84d..f6c5cde7 100644
--- a/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
+++ b/org.jacoco.core/src/org/jacoco/core/analysis/IClassCoverage.java
@@ -8,7 +8,7 @@
*
* Contributors:
* Marc R. Hoffmann - initial API and implementation
- *
+ *
*******************************************************************************/
package org.jacoco.core.analysis;
@@ -17,7 +17,7 @@ import java.util.Collection;
/**
* Coverage data of a single class containing methods. The name of this node is
* the fully qualified class name in VM notation (slash separated).
- *
+ *
* @see IMethodCoverage
*/
public interface IClassCoverage extends ISourceNode {
@@ -25,7 +25,7 @@ public interface IClassCoverage extends ISourceNode {
/**
* Returns the identifier for this class which is the CRC64 signature of the
* class definition.
- *
+ *
* @return class identifier
*/
long getId();
@@ -34,7 +34,7 @@ public interface IClassCoverage extends ISourceNode {
* Returns if the the analyzed class does match the execution data provided.
* More precisely if execution data is available for a class with the same
* qualified name but with a different class id.
- *
+ *
* @return <code>true</code> if this class does not match to the provided
* execution data.
*/
@@ -42,14 +42,14 @@ public interface IClassCoverage extends ISourceNode {
/**
* Returns the VM signature of the class.
- *
+ *
* @return VM signature of the class (may be <code>null</code>)
*/
String getSignature();
/**
* Returns the VM name of the superclass.
- *
+ *
* @return VM name of the super class (may be <code>null</code>, i.e.
* <code>java/lang/Object</code>)
*/
@@ -57,28 +57,28 @@ public interface IClassCoverage extends ISourceNode {
/**
* Returns the VM names of implemented/extended interfaces.
- *
+ *
* @return VM names of implemented/extended interfaces
*/
String[] getInterfaceNames();
/**
* Returns the VM name of the package this class belongs to.
- *
+ *
* @return VM name of the package
*/
String getPackageName();
/**
* Returns the optional name of the corresponding source file.
- *
+ *
* @return name of the corresponding source file
*/
String getSourceFileName();
/**
* Returns the methods included in this class.
- *
+ *
* @return methods of this class
*/
Collection<IMethodCoverage> getMethods();