| org.java.plugin.registry.Library
All known Subclasses: org.java.plugin.tools.mocks.MockLibrary, org.java.plugin.registry.xml.LibraryImpl,
Library | public interface Library extends UniqueIdentity,PluginElement<Library>(Code) | | This interface provides access to information about resource or code
contributed by plug-in.
Library UID is a combination of declaring plug-in ID and library ID that is
unique within whole set of registered plug-ins.
version: $Id$ |
getExports | Collection<String> getExports()(Code) | | This method should return collection of
String objects that
represent resource name prefixes or package name patterns that are
available to other plug-ins.
For code library, prefix is a package name, for resource library,
the same rules applied to relative resource path calculated against
library path (you can replace slash characters in path with dots).
Example prefixes are:
"*", "package.name.*", "package.name.ClassName", "resource/path/*
collection of exported resource name patterns |
getVersion | Version getVersion()(Code) | | library version identifier as specified in manifest file ornull |
isCodeLibrary | boolean isCodeLibrary()(Code) | | true if this is "code" library |
|
|