[site] "basic topics -> plugin structure" structured

This commit is contained in:
Anna Bulenkova 2015-04-21 09:43:46 +02:00
parent 5ef9eba1cf
commit 55966488e2
11 changed files with 37 additions and 37 deletions

View File

@ -15,15 +15,15 @@
* [Build Number Ranges](basic_topics/getting_started/build_number_ranges.html)
* [Running and Debugging a Plugin](basic_topics/getting_started/running_and_debugging_a_plugin.html)
* [Plugin Compatibility with IntelliJ Platform Products](basic_topics/getting_started/plugin_compatibility.html)
* [Plugin Structure](plugin_structure.html)
* [Plugin Content](plugin_content.html)
* [Plugin Class Loaders](plugin_class_loaders.html)
* [Plugin Components](plugin_components.html)
* [Plugin Extensions and Extension Points](plugin_extensions_and_extension_points.html)
* [Plugin Actions](plugin_actions.html)
* [Plugin Services](plugin_services.html)
* [Plugin Configuration File](plugin_configuration_file.html)
* [Plugin Dependencies](plugin_dependencies.html)
* [Plugin Structure](basic_topics/plugin_structure.html)
* [Plugin Content](basic_topics/plugin_structure/plugin_content.html)
* [Plugin Class Loaders](basic_topics/plugin_structure/plugin_class_loaders.html)
* [Plugin Components](basic_topics/plugin_structure/plugin_components.html)
* [Plugin Extensions and Extension Points](basic_topics/plugin_structure/plugin_extensions_and_extension_points.html)
* [Plugin Actions](basic_topics/plugin_structure/plugin_actions.html)
* [Plugin Services](basic_topics/plugin_structure/plugin_services.html)
* [Plugin Configuration File](basic_topics/plugin_structure/plugin_configuration_file.html)
* [Plugin Dependencies](basic_topics/plugin_structure/plugin_dependencies.html)
* [Architectural Overview](architectural_overview.html)
* [General Threading Rules](general_threading_rules.html)
* [Virtual Files](virtual_file.html)

View File

@ -0,0 +1,28 @@
---
layout: editable
title: Plugin Structure
---
Plugins are the only supported way to extend IDEA functionality.
A plugin uses API exposed by IDEA or other plugins to implement its functionality.
This document is focused on the plugin system structure and plugin lifecycle.
It doesn't specify any other APIs that may be used by plugins.
The following subjects are covered:
* [Plugin Content](basic_topics/plugin_structure/plugin_content.html)
* [Plugin Class Loaders](basic_topics/plugin_structure/plugin_class_loaders.html)
* [Plugin Components](basic_topics/plugin_structure/plugin_components.html)
* [Plugin Extensions and Extension Points](basic_topics/plugin_structure/plugin_extensions_and_extension_points.html)
* [Plugin Actions](basic_topics/plugin_structure/plugin_actions.html)
* [Plugin Services](basic_topics/plugin_structure/plugin_services.html)
* [Plugin Configuration File](basic_topics/plugin_structure/plugin_configuration_file.html)
* [Plugin Dependencies](basic_topics/plugin_structure/plugin_dependencies.html)

View File

@ -1,28 +0,0 @@
---
layout: editable
title: Plugin Structure
---
Plugins are the only supported way to extend IDEA functionality.
A plugin uses API exposed by IDEA or other plugins to implement its functionality.
This document is focused on the plugin system structure and plugin lifecycle.
It doesn't specify any other APIs that may be used by plugins.
The following subjects are covered:
* [Plugin Content](plugin_content.html)
* [Plugin Class Loaders](plugin_class_loaders.html)
* [Plugin Components](plugin_components.html)
* [Plugin Extensions and Extension Points](plugin_extensions_and_extension_points.html)
* [Plugin Actions](plugin_actions.html)
* [Plugin Services](plugin_services.html)
* [Plugin Configuration File](plugin_configuration_file.html)
* [Plugin Dependencies](plugin_dependencies.html)