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 vote down vote up
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 vote down vote up
@Override
public LibraryProperties getProperties() {
  return myProperties;
}
 
Example #3
Source File: NewLibraryEditor.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Override
public void setProperties(LibraryProperties properties) {
  myProperties = properties;
}
 
Example #4
Source File: LibraryRootsComponent.java    From consulo with Apache License 2.0 4 votes vote down vote up
@Nonnull
@Override
public LibraryProperties getProperties() {
  return getLibraryEditor().getProperties();
}
 
Example #5
Source File: LibraryEx.java    From consulo with Apache License 2.0 votes vote down vote up
LibraryProperties getProperties(); 
Example #6
Source File: LibraryEx.java    From consulo with Apache License 2.0 votes vote down vote up
void setProperties(LibraryProperties properties); 
Example #7
Source File: LibraryEx.java    From consulo with Apache License 2.0 votes vote down vote up
LibraryProperties getProperties(); 
Example #8
Source File: LibraryEditorBase.java    From consulo with Apache License 2.0 votes vote down vote up
public abstract void setProperties(LibraryProperties properties); 
Example #9
Source File: LibraryEditor.java    From consulo with Apache License 2.0 votes vote down vote up
LibraryProperties getProperties();