public final class AddinLibraryList extends java.lang.Object implements LibraryList
Thread Safety: Instances of this class are thread-safe.
JDK_LIST_PROPERTY, LIB_LIST_PROPERTY, LISTNAME_PROPERTY, TRANSIENT_PROPERTY
Modifier and Type | Method and Description |
---|---|
JDK |
findJDK(java.lang.Object id)
Finds the JDK definition that matches the specified name.
|
JLibrary |
findLibrary(java.lang.Object id)
Finds the JLibrary that matches the specified id.
|
java.util.Map<java.lang.String,oracle.jdevimpl.library.DependentLibraryInfo> |
getDependentManifestLibraries() |
javax.swing.Icon |
getIcon()
Returns an
Icon that can be shown in association with this
Displayable . |
java.util.List |
getJdkList()
Retrieves a List of JDK definitions contained in this LibraryList.
|
java.util.List |
getLibraryList()
Retrieves a List of JLibrary definitions contained in this LibraryList.
|
java.lang.String |
getListName()
Retrieves the name of this LibraryList.
|
java.lang.String |
getLongLabel()
Returns a long label that can be displayed to the user.
|
java.lang.String |
getShortLabel()
Returns a short label that can be displayed to the user.
|
java.lang.String |
getToolTipText()
Returns the tool tip text to show when the mouse pointer pauses
over a UI component that represents this
Displayable . |
boolean |
isTransient()
Whether this list is transient (not-persistent).
|
JDK |
loadJDK(java.lang.String name,
URLPath clsPath,
URLPath srcPath,
URLPath docPath,
java.net.URL exeURL,
VersionNumber version,
java.net.URL sdkBinDir)
Deprecated.
since 11.1.1.0.0. This method should be called only by the
internal implementation of JLibraryManager, and is not intended
for general use.
|
void |
registerLibrary(JLibrary library)
Registers an extension library programmatically.
|
java.lang.String |
toString()
Returns the Short Label displayed to a user.
|
public void registerLibrary(JLibrary library)
Note that the preferred way to register extension libraries is to use the <library> hook in extension.xml. Extension writers should generally avoid calling this method.
library
- a library to install.java.lang.NullPointerException
- if library is null.@Deprecated public JDK loadJDK(java.lang.String name, URLPath clsPath, URLPath srcPath, URLPath docPath, java.net.URL exeURL, VersionNumber version, java.net.URL sdkBinDir)
public JDK findJDK(java.lang.Object id)
LibraryList
findJDK
in interface LibraryList
id
- the id of the JDK definitionJDK
representing the JDK definition.public JLibrary findLibrary(java.lang.Object id)
LibraryList
findLibrary
in interface LibraryList
public java.util.List getJdkList()
LibraryList
getJdkList
in interface LibraryList
public java.util.List getLibraryList()
LibraryList
getLibraryList
in interface LibraryList
public java.util.Map<java.lang.String,oracle.jdevimpl.library.DependentLibraryInfo> getDependentManifestLibraries()
public java.lang.String getListName()
LibraryList
getListName
in interface LibraryList
public boolean isTransient()
LibraryList
isTransient
in interface LibraryList
public java.lang.String getShortLabel()
Displayable
String
is considered
translatable and should therefore be placed in an appropriate
resource file. When possible, the returned label should be
reasonably short enough to show in the navigator or explorer
windows but long enough to clearly identify and distinguish the
Displayable
.getShortLabel
in interface Displayable
Displayable
that can be shown to the user.public java.lang.String getLongLabel()
Displayable
String
is considered translatable
and should therefore be placed in an appropriate resource file.
The long label differs from the short label essentially on length.
Usually the long label will only be shown on-demand and in places
where horizontal space is more available. Examples are the status
bar and tooltips.getLongLabel
in interface Displayable
Displayable
that
can be shown to the user.public javax.swing.Icon getIcon()
Displayable
Icon
that can be shown in association with this
Displayable
. Typically the icon will be used in a
tree control or list control. Therefore the icon must fit
naturally within the space normally given to items within those
controls. Such icons are usually 16x16 in size or, if there is a
one-pixel transparent padding around the edge, 18x18 in size. It
is strongly recommended that icons returned by this method be
either 16x16 or 18x18 in size. If null
is returned,
the control may show a default icon, or it may show no icon,
whichever is appropriate.getIcon
in interface Displayable
Icon
to be displayed for the
Displayable
.public java.lang.String getToolTipText()
Displayable
Displayable
.
In many cases it may be appropriate for this method to return the
same value as Displayable.getLongLabel()
.getToolTipText
in interface Displayable
Displayable
.public java.lang.String toString()
Displayable
toString
method in java.lang.Object
.
Implementors of the Displayable
interface should
override this as appropriate. The default implementation is
the same as getShortLabel
toString
in interface Displayable
toString
in class java.lang.Object
Object.toString()
,
Displayable.getShortLabel()