mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
update links for moved plugin_extensions_and_extension_points.md
This commit is contained in:
parent
ab9054c4b0
commit
5a4e8d9b27
@ -118,7 +118,7 @@ Expand the External Library (as shown) to reveal the JAR files contained in the
|
||||
Drill down into the JAR files to expose the packages and (decompiled) classes.
|
||||
|
||||
### Exploring APIs as an Extender
|
||||
If a project is dependent on a plugin or module, in some cases the project can also [extend](/basics/plugin_structure/plugin_extensions_and_extension_points.md) the functionality available from the plugin or module.
|
||||
If a project is dependent on a plugin or module, in some cases the project can also [extend](/basics/plugin_structure/plugin_extensions.md) the functionality available from the plugin or module.
|
||||
|
||||
To browse the opportunities for extension, start by placing the cursor on the contents of the `<depends>` elements in the project's `plugin.xml` file.
|
||||
Use the [Go to Declaration](https://www.jetbrains.com/help/idea/navigating-through-the-source-code.html#go_to_declaration) IDE feature to navigate to the `plugin.xml` file for the plugin on which the project depends.
|
||||
|
@ -9,7 +9,7 @@ The _IntelliJ Platform_ is very large, and very capable, and its size and scope
|
||||
- [Getting Started](/basics/getting_started.md) with plugins.
|
||||
- [Testing plugins](/basics/testing_plugins/testing_plugins.md).
|
||||
- Component model - the _IntelliJ Platform_ is a component based application, and is responsible for creating components and injecting dependencies. Understanding this is necessary for building plugins.
|
||||
- [Extension points](/basics/plugin_structure/plugin_extensions_and_extension_points.md) - how to register components with extension points, and how to find out what extension points are available.
|
||||
- [Extension points](/basics/plugin_structure/plugin_extensions.md) - how to register components with extension points, and how to find out what extension points are available.
|
||||
- [Virtual files](/basics/architectural_overview/virtual_file.md) - all file access should go through the Virtual File System which abstracts and caches the file system. This means you can work with files that are on the local file system, in a zip file or are old versions from version control.
|
||||
|
||||
## Code model
|
||||
|
@ -65,7 +65,7 @@ If closing tabs is enabled in general, you can disable closing of specific tabs
|
||||
|
||||
## How to Create a Tool Window?
|
||||
|
||||
The IntelliJ Platform provides the `com.intellij.toolWindow` [extension point](/basics/plugin_structure/plugin_extensions_and_extension_points.md) that you can use to create and configure your custom tool windows. This extension point is declared using the [`ToolWindowEP`](upsource:///platform/platform-api/src/com/intellij/openapi/wm/ToolWindowEP.java) bean class.
|
||||
The IntelliJ Platform provides the `com.intellij.toolWindow` [extension point](/basics/plugin_structure/plugin_extensions.md) that you can use to create and configure your custom tool windows. This extension point is declared using the [`ToolWindowEP`](upsource:///platform/platform-api/src/com/intellij/openapi/wm/ToolWindowEP.java) bean class.
|
||||
|
||||
### Creation of Plugin
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user