aboutsummaryrefslogtreecommitdiff
path: root/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java')
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
index 63c5104df..f75519db2 100644
--- a/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
+++ b/interfaces/src/main/java/dotty/tools/dotc/interfaces/ReporterResult.java
@@ -6,13 +6,13 @@ package dotty.tools.dotc.interfaces;
* manipulate objects of this type.
*/
public interface ReporterResult {
- /** Have we emitted any error ? */
+ /** @return Have we emitted any error? */
boolean hasErrors();
- /** Number of errors that have been emitted */
+ /** @return Number of errors that have been emitted */
int errorCount();
- /** Have we emitted any warning ? */
+ /** @return Have we emitted any warning ? */
boolean hasWarnings();
- /** Number of warnings that have been emitted */
+ /** @return Number of warnings that have been emitted */
int warningCount();
}