Package | Description |
---|---|
org.netbeans.api.project.libraries |
Representation of a library, and the ability to find the installed libraries.
|
org.netbeans.spi.project.libraries | |
org.netbeans.spi.project.libraries.support |
Modifier and Type | Method and Description |
---|---|
Library |
LibraryManager.createLibrary(String type,
String name,
Map<String,List<URL>> contents)
Creates a new library definition and adds it to the list.
|
Library |
LibraryManager.createLibrary(String type,
String name,
String displayName,
String description,
Map<String,List<URL>> contents)
Creates a new library definition and adds it to the list.
|
Library |
LibraryManager.createLibrary(String type,
String name,
String displayName,
String description,
Map<String,List<URL>> contents,
Map<String,String> properties)
Creates a new library definition and adds it to the list.
|
Library |
LibraryManager.createURILibrary(String type,
String name,
Map<String,List<URI>> contents)
Creates a new library definition and adds it to the list.
|
Library |
LibraryManager.createURILibrary(String type,
String name,
String displayName,
String description,
Map<String,List<URI>> contents)
Creates a new library definition and adds it to the list.
|
Library |
LibraryManager.createURILibrary(String type,
String name,
String displayName,
String description,
Map<String,List<URI>> contents,
Map<String,String> properties)
Creates a new library definition and adds it to the list.
|
Library[] |
LibraryManager.getLibraries()
Lists all libraries defined in this manager.
|
Library |
LibraryManager.getLibrary(String name)
Returns library by its name.
|
Modifier and Type | Method and Description |
---|---|
void |
LibraryManager.addLibrary(Library library)
Deprecated.
Use
LibraryManager.createLibrary(java.lang.String, java.lang.String, java.util.Map<java.lang.String, java.util.List<java.net.URL>>) instead, as this properly supports local managers. |
void |
LibraryManager.removeLibrary(Library library)
Removes installed library
|
Modifier and Type | Method and Description |
---|---|
static Library |
LibraryFactory.createLibrary(LibraryImplementation libraryImplementation)
Creates Library for LibraryImplementation
|
Modifier and Type | Method and Description |
---|---|
static LibraryImplementation |
LibrariesSupport.getLibraryImplementation(Library library)
Returns the
LibraryImplementation for given Library . |