Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
ddbd8621
Commit
ddbd8621
authored
6 years ago
by
sergey.vasiliev
Browse files
Options
Download
Email Patches
Plain Diff
removed unnecessary extension point
parent
e1328723
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
platform/lang-api/src/com/intellij/ide/script/ScriptedExtensionsProvider.java
+0
-38
...c/com/intellij/ide/script/ScriptedExtensionsProvider.java
platform/platform-resources/src/META-INF/LangExtensionPoints.xml
+0
-1
...m/platform-resources/src/META-INF/LangExtensionPoints.xml
with
0 additions
and
39 deletions
+0
-39
platform/lang-api/src/com/intellij/ide/script/ScriptedExtensionsProvider.java
deleted
100644 → 0
+
0
-
38
View file @
e1328723
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package
com.intellij.ide.script
;
import
com.intellij.openapi.actionSystem.AnAction
;
import
com.intellij.openapi.extensions.ExtensionPointName
;
import
org.jetbrains.annotations.ApiStatus
;
import
org.jetbrains.annotations.Nls
;
import
org.jetbrains.annotations.NotNull
;
import
org.jetbrains.annotations.Nullable
;
import
java.io.File
;
/**
* Provides plugin name and it's scripts directory
*/
@ApiStatus
.
Experimental
public
interface
ScriptedExtensionsProvider
{
ExtensionPointName
<
ScriptedExtensionsProvider
>
EP_NAME
=
ExtensionPointName
.
create
(
"com.intellij.scriptedExtensionsProvider"
);
/**
*
* @return user visible name that is shown in corresponding menus
*/
@Nls
(
capitalization
=
Nls
.
Capitalization
.
Title
)
@NotNull
String
getName
();
/**
*
* @return directory where bundled resources were extracted to
*/
@Nullable
File
getScriptsDirectory
();
/**
*
* @return actions to run scripts found inside {@link ScriptedExtensionsProvider#getScriptsDirectory()}
*/
@NotNull
AnAction
[]
getActions
();
}
This diff is collapsed.
Click to expand it.
platform/platform-resources/src/META-INF/LangExtensionPoints.xml
+
0
-
1
View file @
ddbd8621
...
...
@@ -1004,7 +1004,6 @@
<extensionPoint
name=
"implementationViewSessionFactory"
interface=
"com.intellij.codeInsight.hint.ImplementationViewSessionFactory"
/>
<extensionPoint
name=
"scriptedExtensionsProvider"
interface=
"com.intellij.ide.script.ScriptedExtensionsProvider"
/>
</extensionPoints>
</idea-plugin>
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help