Package com._1c.g5.v8.dt.natives.library
Interface IComponentLoader
- All Superinterfaces:
IComponentDescription
- All Known Implementing Classes:
ChartComponentDescription
,DcsNativeComponentDescription
,FormNativeComponentDescription
,MdNativeComponentDescription
,PictureNativeComponentDescription
,WSDefinitionComponentDescription
Interface for loading external natives components for using them in JNI call.
This interface also provides API for adding external dependency for loading component.
Clients should create instance of this interface in the same classloader where JNI call is
This interface also provides API for adding external dependency for loading component.
Clients should create instance of this interface in the same classloader where JNI call is
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addExternalDependency
(IComponentDescription component) Adds external dependency component.Methods inherited from interface com._1c.g5.v8.dt.natives.library.IComponentDescription
checkLibraryResources, getComponentName, getLibraries
-
Method Details
-
addExternalDependency
Adds external dependency component.- Parameters:
component
- external dependency component.
This component usually contains additional dependencies for loading native components.
For example, it should be "icu" library or other different components.
-