Package com.e1c.g5.v8.dt.check.settings
Interface ICheckDescription
-
- All Superinterfaces:
INamedElement
public interface ICheckDescription extends INamedElement
Check description.
-
-
Field Summary
-
Fields inherited from interface com.e1c.g5.v8.dt.check.settings.INamedElement
ROOT_ID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,CheckParameterDefinition>getParameters()Returns the immutable map of check parameters by their names.CheckUidgetParentId()Returns category id from extension point "com.e1c.g5.v8.dt.check.category" ornullif none.IssueSeveritygetSeverity()Returns check severity.IssueTypegetType()Returns check type.booleanisCriticalDataIntegrityCheck()Checks if this definition describes the critical data integrity checkbooleanisEnabled()Returns check enabling.booleanisProtectedObjectCheckEnabled()Returns the protected object check mode enablement status-
Methods inherited from interface com.e1c.g5.v8.dt.check.settings.INamedElement
getDescription, getId, getTitle
-
-
-
-
Method Detail
-
getParameters
Map<String,CheckParameterDefinition> getParameters()
Returns the immutable map of check parameters by their names.- Returns:
- map of check properties by their names, not
null.
-
getParentId
CheckUid getParentId()
Returns category id from extension point "com.e1c.g5.v8.dt.check.category" ornullif none.- Specified by:
getParentIdin interfaceINamedElement- Returns:
- category or
nullif none
-
getSeverity
IssueSeverity getSeverity()
Returns check severity.- Returns:
- check severity, not
null
-
getType
IssueType getType()
Returns check type.- Returns:
- check type, not
null
-
isEnabled
boolean isEnabled()
Returns check enabling.- Returns:
- whether check is enableb
-
isProtectedObjectCheckEnabled
boolean isProtectedObjectCheckEnabled()
Returns the protected object check mode enablement status- Returns:
- True if the protected object check mode is enabled
-
isCriticalDataIntegrityCheck
boolean isCriticalDataIntegrityCheck()
Checks if this definition describes the critical data integrity check- Returns:
- True if the check is a critical integrity check
-
-