本文整理匯總了Java中com.intellij.openapi.editor.LazyRangeMarkerFactory類的典型用法代碼示例。如果您正苦於以下問題:Java LazyRangeMarkerFactory類的具體用法?Java LazyRangeMarkerFactory怎麽用?Java LazyRangeMarkerFactory使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
LazyRangeMarkerFactory類屬於com.intellij.openapi.editor包,在下文中一共展示了LazyRangeMarkerFactory類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createMocksForAddDependency
import com.intellij.openapi.editor.LazyRangeMarkerFactory; //導入依賴的package包/類
private void createMocksForAddDependency(
Container applicationServices, Container projectServices) {
projectServices.register(
BlazeProjectDataManager.class,
new MockBlazeProjectDataManager(createMockBlazeProjectData()));
projectServices.register(FileEditorManager.class, mock(FileEditorManager.class));
projectServices.register(BuildReferenceManager.class, mock(BuildReferenceManager.class));
projectServices.register(LazyRangeMarkerFactory.class, mock(LazyRangeMarkerFactoryImpl.class));
applicationServices.register(
VirtualFileSystemProvider.class, new MockVirtualFileSystemProvider("/foo/BUILD"));
AndroidResourceModuleRegistry moduleRegistry = new AndroidResourceModuleRegistry();
moduleRegistry.put(
module,
AndroidResourceModule.builder(TargetKey.forPlainTarget(Label.create("//foo:bar"))).build());
projectServices.register(AndroidResourceModuleRegistry.class, moduleRegistry);
}