com.intellij.openapi.roots.libraries.ui.LibraryEditorComponent Java Examples

The following examples show how to use com.intellij.openapi.roots.libraries.ui.LibraryEditorComponent. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MuleLibraryType.java    From mule-intellij-plugins with Apache License 2.0 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<MuleLibraryProperties> libraryEditorComponent)
{
    return null;
}
 
Example #2
Source File: AndroidModuleLibraryType.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<AndroidModuleLibraryProperties> editorComponent) {
  return null;
}
 
Example #3
Source File: AndroidModuleLibraryType.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<AndroidModuleLibraryProperties> editorComponent) {
  return null;
}
 
Example #4
Source File: FlutterPluginLibraryType.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<FlutterPluginLibraryProperties> component) {
  return null;
}
 
Example #5
Source File: FlutterPluginLibraryType.java    From flutter-intellij with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<FlutterPluginLibraryProperties> component) {
  return null;
}
 
Example #6
Source File: PythonLibraryType.java    From intellij-pants-plugin with Apache License 2.0 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent) {
  return null;
}
 
Example #7
Source File: HaxeLibraryType.java    From intellij-haxe with Apache License 2.0 4 votes vote down vote up
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<DummyLibraryProperties> component) {
  return null;
}
 
Example #8
Source File: LibraryType.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
public abstract LibraryPropertiesEditor createPropertiesEditor(@Nonnull LibraryEditorComponent<P> editorComponent);
 
Example #9
Source File: SandLibraryType.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@Nonnull LibraryEditorComponent<DummyLibraryProperties> editorComponent) {
  return null;
}