Package net.officefloor.compile.issues
Interface IssueCapture<R>
-
public interface IssueCapture<R>
Capture ofCompilerIssue
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompilerIssue[]
getCompilerIssues()
Obtains theCompilerIssue
instances of the capture.R
getReturnValue()
Obtains the return value from theSupplier
.
-
-
-
Method Detail
-
getReturnValue
R getReturnValue()
Obtains the return value from theSupplier
.- Returns:
- Return value.
-
getCompilerIssues
CompilerIssue[] getCompilerIssues()
Obtains theCompilerIssue
instances of the capture.- Returns:
CompilerIssue
instances of the capture. If noCompilerIssue
instances, then will return empty array.
-
-