Package org.java.plugin.registry
Interface IntegrityCheckReport
-
public interface IntegrityCheckReportResult of validation performed by registry on all registered plug-ins. This includes dependencies check, parameters check (against parameter definitions) and any other kind of validation.- Version:
- $Id$
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIntegrityCheckReport.ErrorIntegrity check error constants.static interfaceIntegrityCheckReport.ReportItemIntegrity check report element.static classIntegrityCheckReport.SeverityIntegrity check report item severity constants.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intcountErrors()intcountWarnings()java.util.Collection<IntegrityCheckReport.ReportItem>getItems()
-
-
-
Method Detail
-
countErrors
int countErrors()
- Returns:
- number of items with severity
IntegrityCheckReport.Severity.ERRORin this report
-
countWarnings
int countWarnings()
- Returns:
- number of items with severity
IntegrityCheckReport.Severity.WARNINGin this report
-
getItems
java.util.Collection<IntegrityCheckReport.ReportItem> getItems()
- Returns:
- collection of
IntegrityCheckReport.ReportItemobjects
-
-