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.CheckUid
getParentId()
Returns category id from extension point "com.e1c.g5.v8.dt.check.category" ornull
if none.IssueSeverity
getSeverity()
Returns check severity.IssueType
getType()
Returns check type.boolean
isCriticalDataIntegrityCheck()
Checks if this definition describes the critical data integrity checkboolean
isEnabled()
Returns check enabling.boolean
isProtectedObjectCheckEnabled()
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" ornull
if none.- Specified by:
getParentId
in interfaceINamedElement
- Returns:
- category or
null
if 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
-
-