Interface BugReport.BugReportListener
-
- Enclosing class:
- BugReport
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface BugReport.BugReportListener
A listener that listens to changes to this report.- Since:
- 10585
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bugReportChanged(BugReport report)
Called whenever this bug report was changed, e.g.
-
-
-
Method Detail
-
bugReportChanged
void bugReportChanged(BugReport report)
Called whenever this bug report was changed, e.g. the data to be included in it.- Parameters:
report
- The report that was changed.
-
-