mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-02-22 08:19:39 +02:00
Добавление недостающих байндингов
This commit is contained in:
parent
ec7b44717a
commit
1117b168ca
@ -14,7 +14,8 @@ Bundle-RequiredExecutionEnvironment: JavaSE-11
|
||||
Automatic-Module-Name: com.e1c.v8codestyle.autosort
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Bundle-Localization: plugin
|
||||
Import-Package: com._1c.g5.v8.bm.common.collections;version="[4.0.0,5.0.0)",
|
||||
Import-Package: com._1c.g5.v8.activitytracking.core;version="[1.0.0,2.0.0)",
|
||||
com._1c.g5.v8.bm.common.collections;version="[4.0.0,5.0.0)",
|
||||
com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
|
||||
com._1c.g5.v8.bm.core.event;version="[3.0.0,4.0.0)",
|
||||
com._1c.g5.v8.bm.integration;version="[11.0.0,12.0.0)",
|
||||
|
@ -14,8 +14,10 @@ package com.e1c.v8codestyle.internal.autosort;
|
||||
|
||||
import org.eclipse.core.runtime.Plugin;
|
||||
|
||||
import com._1c.g5.v8.activitytracking.core.ISystemIdleService;
|
||||
import com._1c.g5.v8.dt.core.model.IModelEditingSupport;
|
||||
import com._1c.g5.v8.dt.core.platform.IConfigurationProvider;
|
||||
import com._1c.g5.v8.dt.core.platform.IDerivedDataManagerProvider;
|
||||
import com.e1c.g5.v8.dt.cli.api.components.BaseCliCommandExternalDependencyModule;
|
||||
|
||||
/**
|
||||
@ -39,6 +41,8 @@ class ExternalDependenciesModule
|
||||
// V8 DT
|
||||
bind(IConfigurationProvider.class).toService();
|
||||
bind(IModelEditingSupport.class).toService();
|
||||
bind(ISystemIdleService.class).toService();
|
||||
bind(IDerivedDataManagerProvider.class).toService();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -12,7 +12,9 @@
|
||||
*******************************************************************************/
|
||||
package com.e1c.v8codestyle.autosort.itests;
|
||||
|
||||
import com._1c.g5.v8.activitytracking.core.ISystemIdleService;
|
||||
import com._1c.g5.v8.dt.core.platform.IBmModelManager;
|
||||
import com._1c.g5.v8.dt.core.platform.IDerivedDataManagerProvider;
|
||||
import com._1c.g5.v8.dt.core.platform.IDtProjectManager;
|
||||
import com._1c.g5.wiring.AbstractServiceAwareModule;
|
||||
import com.e1c.v8codestyle.autosort.ISortService;
|
||||
@ -39,6 +41,8 @@ public class ExternalDependenciesModule
|
||||
bind(ISortService.class).toService();
|
||||
bind(IBmModelManager.class).toService();
|
||||
bind(IDtProjectManager.class).toService();
|
||||
bind(ISystemIdleService.class).toService();
|
||||
bind(IDerivedDataManagerProvider.class).toService();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user