com.intellij.openapi.roots.libraries.LibraryProperties Java Examples
The following examples show how to use
com.intellij.openapi.roots.libraries.LibraryProperties.
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: NewLibraryEditor.java From consulo with Apache License 2.0 | 4 votes |
public NewLibraryEditor(@Nullable LibraryType type, @Nullable LibraryProperties properties) { myType = type; myProperties = properties; myRoots = new MultiMap<>(); myExcludedRoots = new LinkedHashSet<>(); }
Example #2
Source File: NewLibraryEditor.java From consulo with Apache License 2.0 | 4 votes |
@Override public LibraryProperties getProperties() { return myProperties; }
Example #3
Source File: NewLibraryEditor.java From consulo with Apache License 2.0 | 4 votes |
@Override public void setProperties(LibraryProperties properties) { myProperties = properties; }
Example #4
Source File: LibraryRootsComponent.java From consulo with Apache License 2.0 | 4 votes |
@Nonnull @Override public LibraryProperties getProperties() { return getLibraryEditor().getProperties(); }
Example #5
Source File: LibraryEx.java From consulo with Apache License 2.0 | votes |
LibraryProperties getProperties();
Example #6
Source File: LibraryEx.java From consulo with Apache License 2.0 | votes |
void setProperties(LibraryProperties properties);
Example #7
Source File: LibraryEx.java From consulo with Apache License 2.0 | votes |
LibraryProperties getProperties();
Example #8
Source File: LibraryEditorBase.java From consulo with Apache License 2.0 | votes |
public abstract void setProperties(LibraryProperties properties);
Example #9
Source File: LibraryEditor.java From consulo with Apache License 2.0 | votes |
LibraryProperties getProperties();