Package com._1c.g5.v8.derived.computer
Interface IDerivedDataPartComputer
-
- All Known Subinterfaces:
ICommonAttributeCacheProvider
- All Known Implementing Classes:
AbstractDerivedDataPartComputer
,CommonAttributeCacheProvider
,GraphicalSchemeValidationChecker
,MdValidationChecker
public interface IDerivedDataPartComputer
Derived data part computer is responsible for computing a single part of the derived data.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
compute(IBmObject bmObject, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
Computes part of the given object derived data.String
getSupportedPartId()
Gets the identifier of the part supported by this computer.
-
-
-
Method Detail
-
compute
void compute(IBmObject bmObject, org.eclipse.core.runtime.IProgressMonitor progressMonitor)
Computes part of the given object derived data.- Parameters:
bmObject
- Context of the derived data computing. Cannot benull
progressMonitor
- Controls the computation of the derived data. Cannot benull
-
getSupportedPartId
String getSupportedPartId()
Gets the identifier of the part supported by this computer.- Returns:
- The unique identifier of the supported part.
-
-