mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 18:27:49 +08:00
appcode: extension point list
This commit is contained in:
parent
3adb95ab48
commit
597b7ab67a
4
ijs.tree
4
ijs.tree
@ -293,7 +293,9 @@
|
||||
<toc-element id="dev_alternate_products.md" toc-title="Developing for Multiple Products"/>
|
||||
<toc-element id="plugin_compatibility.md" toc-title="Compatibility with Multiple Products"/>
|
||||
<toc-element id="android_studio.md" toc-title="Android Studio"/>
|
||||
<toc-element id="app_code.md" toc-title="AppCode"/>
|
||||
<toc-element id="app_code.md" toc-title="AppCode">
|
||||
<toc-element id="appcode_extension_point_list.md" toc-title="AppCode Extension Point List"/>
|
||||
</toc-element>
|
||||
<toc-element id="clion.md" toc-title="CLion"/>
|
||||
<toc-element id="data_grip.md" toc-title="DataGrip"/>
|
||||
<toc-element id="goland.md" toc-title="GoLand">
|
||||
|
@ -37,5 +37,10 @@ The dependency on the AppCode APIs must be declared in the `plugin.xml` file.
|
||||
As described in [Modules Specific to Functionality](plugin_compatibility.md#modules-specific-to-functionality) table, the `<depends>` tags must declare `com.intellij.modules.appcode`.
|
||||
|
||||
## Available AppCode APIs
|
||||
|
||||
> See [AppCode Extension Point List](appcode_extension_point_list.md) for complete list.
|
||||
>
|
||||
{type="note"}
|
||||
|
||||
Use the [Exploring APIs as a Consumer](plugin_compatibility.md#exploring-apis-as-a-consumer) process to identify the libraries in AppCode.
|
||||
Test your plugin with any version of AppCode you wish to support.
|
84
topics/products/appcode/appcode_extension_point_list.md
Normal file
84
topics/products/appcode/appcode_extension_point_list.md
Normal file
@ -0,0 +1,84 @@
|
||||
[//]: # (title: AppCode Extension Point List)
|
||||
|
||||
<!-- Copyright 2000-2021 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. -->
|
||||
|
||||
20 Extension Points (EP) for AppCode
|
||||
|
||||
See [Plugin Extensions](plugin_extensions.md) on how to declare extensions in your plugin.
|
||||
|
||||
**Extension Point** searches for usages inside existing implementations of open-source IntelliJ Platform plugins via [IntelliJ Platform Explorer](https://jb.gg/ipe).
|
||||
|
||||
**Implementation** is related EP class.
|
||||
|
||||
#### Note Legend
|
||||
|
||||
| Icon | Description | Details |
|
||||
|---|---|---|
|
||||
|  | Non-Dynamic Extension Point | Installation/update of plugin requires restart ([Dynamic Plugins](dynamic_plugins.md)) |
|
||||
|  | Experimental API | Implementation annotated with [`@ApiStatus.Experimental`](https://github.com/JetBrains/java-annotations/blob/master/common/src/main/java/org/jetbrains/annotations/ApiStatus.java), API might be altered or removed without prior notice |
|
||||
|  | Internal API | Implementation annotated with [`@ApiStatus.Internal`](https://github.com/JetBrains/java-annotations/blob/master/common/src/main/java/org/jetbrains/annotations/ApiStatus.java), should not be used by 3rd party |
|
||||
|  | Project-Level Extension Point | Declared with `area="IDEA_PROJECT"`, can have `Project` as constructor parameter |
|
||||
|
||||
## AppCode
|
||||
|
||||
### AppCodeSwiftPlugin.xml
|
||||
AppCodeSwiftPlugin.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [appcode.swift.sourceModuleProducer](https://jb.gg/ipe?extensions=appcode.swift.sourceModuleProducer)  | `AppcodeSourceModuleProducer` |
|
||||
|
||||
### CocoaCommonPlugin.xml
|
||||
CocoaCommonPlugin.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [cidr.cocoa.xcodeProjectFileProvider](https://jb.gg/ipe?extensions=cidr.cocoa.xcodeProjectFileProvider) | `XcodeProjectFileProvider` |
|
||||
|
||||
### CocoaPlugin.xml
|
||||
CocoaPlugin.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [cidr.cocoa.documentation.search.candidates.helper](https://jb.gg/ipe?extensions=cidr.cocoa.documentation.search.candidates.helper) | `XcodeDocumentationCandidateBasedSearchHelper` |
|
||||
| [cidr.cocoa.documentation.search.usr.provider](https://jb.gg/ipe?extensions=cidr.cocoa.documentation.search.usr.provider) | `XcodeDocumentationUsrProvider` |
|
||||
|
||||
### com.intellij.appcode
|
||||
com.intellij.appcode
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [appcode.runConfigurationExtension](https://jb.gg/ipe?extensions=appcode.runConfigurationExtension)  | `AppCodeRunConfigurationExtension` |
|
||||
| [appcode.xcodeExternalBuildProvider](https://jb.gg/ipe?extensions=appcode.xcodeExternalBuildProvider)  | `XcodeExternalBuildProvider` |
|
||||
| [appcode.xcodeTemplatePathsProvider](https://jb.gg/ipe?extensions=appcode.xcodeTemplatePathsProvider)  | `XcodeTemplatePathsProvider` |
|
||||
|
||||
### SwiftLanguageInternalPlugin.xml
|
||||
SwiftLanguageInternalPlugin.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [swift.sdkInfo.extractor](https://jb.gg/ipe?extensions=swift.sdkInfo.extractor) | `SwiftOCResolveConfigurationSdkInfoExtractor` |
|
||||
|
||||
### SwiftPlugin.xml
|
||||
SwiftPlugin.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [cidr.lang.swiftCustomIncludePathProvider](https://jb.gg/ipe?extensions=cidr.lang.swiftCustomIncludePathProvider)  | `SwiftCustomIncludePathProvider` |
|
||||
| [cidr.lang.swiftSourceModuleProvider](https://jb.gg/ipe?extensions=cidr.lang.swiftSourceModuleProvider)  | `SwiftSourceModuleProvider` |
|
||||
| [cidr.lang.swiftTypeInheritorsSearch](https://jb.gg/ipe?extensions=cidr.lang.swiftTypeInheritorsSearch)  | [`QueryExecutor`](upsource:///platform/core-api/src/com/intellij/util/QueryExecutor.java) |
|
||||
| [swift.kotlinNative](https://jb.gg/ipe?extensions=swift.kotlinNative)  | `KotlinNativeExtensionPoint` |
|
||||
| [swift.lang.sourceKit.compileArgumentsCollector](https://jb.gg/ipe?extensions=swift.lang.sourceKit.compileArgumentsCollector) | `SwiftSourceKitCompileArgumentsCollector` |
|
||||
| [swift.lang.sourceKit.dataGenerator](https://jb.gg/ipe?extensions=swift.lang.sourceKit.dataGenerator)  | `SourceKitDataGenerator` |
|
||||
| [swift.lang.sourceKit.declarationLocationValidator](https://jb.gg/ipe?extensions=swift.lang.sourceKit.declarationLocationValidator) | `SourceKitDeclarationLocationValidator` |
|
||||
| [swift.lang.swiftSupportProvider](https://jb.gg/ipe?extensions=swift.lang.swiftSupportProvider) | `SwiftSupportProvider` |
|
||||
|
||||
### SwiftPMCommon.xml
|
||||
SwiftPMCommon.xml
|
||||
|
||||
| Extension Point | Implementation |
|
||||
|-----------------|----------------|
|
||||
| [swift.packageManager.appleSdk.filter](https://jb.gg/ipe?extensions=swift.packageManager.appleSdk.filter) | `SwiftPackageLoadedAppleSdkFilter` |
|
||||
| [swift.packageManager.environmentConfigurator](https://jb.gg/ipe?extensions=swift.packageManager.environmentConfigurator) | `SwiftPackageManagerEnvironmentConfigurator` |
|
||||
| [swift.packageManager.modulemapsCollector](https://jb.gg/ipe?extensions=swift.packageManager.modulemapsCollector) | `SwiftPackageModuleMapsCollector` |
|
||||
| [swift.packageManager.systemModuleResolver](https://jb.gg/ipe?extensions=swift.packageManager.systemModuleResolver) | `SwiftPackageManagerSystemModuleResolver` |
|
Loading…
x
Reference in New Issue
Block a user