本文整理汇总了Java中consulo.psi.tree.ASTLeafFactory类的典型用法代码示例。如果您正苦于以下问题:Java ASTLeafFactory类的具体用法?Java ASTLeafFactory怎么用?Java ASTLeafFactory使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ASTLeafFactory类属于consulo.psi.tree包,在下文中一共展示了ASTLeafFactory类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: leaf
import consulo.psi.tree.ASTLeafFactory; //导入依赖的package包/类
@Nonnull
public static LeafElement leaf(@Nonnull final IElementType type, @Nonnull LanguageVersion languageVersion, final CharSequence text) {
return ASTLeafFactory.EP.getValue(type).createLeaf(type, languageVersion, text);
}
示例2: CoreApplicationEnvironment
import consulo.psi.tree.ASTLeafFactory; //导入依赖的package包/类
public CoreApplicationEnvironment(@Nonnull Disposable parentDisposable) {
myParentDisposable = parentDisposable;
myFileTypeRegistry = new CoreFileTypeRegistry();
myApplication = createApplication(myParentDisposable);
ApplicationManager.setApplication(myApplication,
new StaticGetter<>(myFileTypeRegistry),
myParentDisposable);
myLocalFileSystem = createLocalFileSystem();
myJarFileSystem = createJarFileSystem();
Extensions.registerAreaClass(ExtensionAreas.PROJECT, null);
final MutablePicoContainer appContainer = myApplication.getPicoContainer();
registerComponentInstance(appContainer, FileDocumentManager.class, new MockFileDocumentManagerImpl(DocumentImpl::new, null));
VirtualFileSystem[] fs = {myLocalFileSystem, myJarFileSystem};
VirtualFileManagerImpl virtualFileManager = new VirtualFileManagerImpl(fs, myApplication.getMessageBus());
registerComponentInstance(appContainer, VirtualFileManager.class, virtualFileManager);
registerApplicationExtensionPoint(ASTLazyFactory.EP.getExtensionPointName(), ASTLazyFactory.class);
registerApplicationExtensionPoint(ASTLeafFactory.EP.getExtensionPointName(), ASTLeafFactory.class);
registerApplicationExtensionPoint(ASTCompositeFactory.EP.getExtensionPointName(), ASTCompositeFactory.class);
addExtension(ASTLazyFactory.EP.getExtensionPointName(), new DefaultASTLazyFactory());
addExtension(ASTLeafFactory.EP.getExtensionPointName(), new DefaultASTLeafFactory());
addExtension(ASTCompositeFactory.EP.getExtensionPointName(), new DefaultASTCompositeFactory());
registerApplicationService(EncodingManager.class, new CoreEncodingRegistry());
registerApplicationService(VirtualFilePointerManager.class, createVirtualFilePointerManager());
registerApplicationService(PsiBuilderFactory.class, new PsiBuilderFactoryImpl());
registerApplicationService(ReferenceProvidersRegistry.class, new MockReferenceProvidersRegistry());
registerApplicationService(StubTreeLoader.class, new CoreStubTreeLoader());
registerApplicationService(PsiReferenceService.class, new PsiReferenceServiceImpl());
registerApplicationService(MetaDataRegistrar.class, new MetaRegistry());
registerApplicationService(ProgressManager.class, createProgressIndicatorProvider());
registerApplicationService(JobLauncher.class, createJobLauncher());
registerApplicationService(CodeFoldingSettings.class, new CodeFoldingSettings());
registerApplicationService(CommandProcessor.class, new CoreCommandProcessor());
myApplication.registerService(ApplicationInfo.class, ApplicationInfoImpl.class);
}