| java.lang.Object org.netbeans.modules.visualweb.project.jsf.libraries.LibraryDefinition org.netbeans.modules.visualweb.project.jsf.libraries.ComponentLibraryDefinition
ComponentLibraryDefinition | public class ComponentLibraryDefinition extends LibraryDefinition (Code) | | author: Po-Ting Wu |
Method Summary | |
public static Library | create(String name, String description, String localizingBundle, List<URL> classPaths, List<URL> sources, List<URL> javadocs, List<URL> designtimes) Create a library definition with specified resources.
Parameters: name - Internal name of the library from which the library definition file name will be derived asas well as the display name for the library Parameters: description - Description key to look up a text description from the localizingBundle Parameters: localizingBundle - Sets the localizing bundle. | public static Library | update(String name, String description, String localizingBundle, List<URL> classPaths, List<URL> sources, List<URL> javadocs, List<URL> designtimes) Convenience method to update an existing library definition with specified resources.
Parameters: name - Internal name of the existing library from which the library definition file name will be derived as as well as the display name for the library Parameters: description - Description key to look up a text description from the localizingBundle Parameters: localizingBundle - Sets the localizing bundle. |
create | public static Library create(String name, String description, String localizingBundle, List<URL> classPaths, List<URL> sources, List<URL> javadocs, List<URL> designtimes) throws IOException(Code) | | Create a library definition with specified resources.
Parameters: name - Internal name of the library from which the library definition file name will be derived asas well as the display name for the library Parameters: description - Description key to look up a text description from the localizingBundle Parameters: localizingBundle - Sets the localizing bundle. The bundle is used for localizing the name anddescription. The bundle is located using the system ClassLoader. This resource name will looksomething like: org.netbeans.modules.visualweb.mymodule.Bundle Parameters: classPaths - List of classpath references: jar, zip, or folder. Can be empty or null. Parameters: javadocs - List of javadoc references, jar zip, or folder. Can be empty or null. sources, List of jar, zip, or folder. Can be empty or null; Library The new Library instance registered with the NetBeans Library Manager throws: IOException - if the library definition already exists or could not be created |
update | public static Library update(String name, String description, String localizingBundle, List<URL> classPaths, List<URL> sources, List<URL> javadocs, List<URL> designtimes) throws IOException(Code) | | Convenience method to update an existing library definition with specified resources.
Parameters: name - Internal name of the existing library from which the library definition file name will be derived as as well as the display name for the library Parameters: description - Description key to look up a text description from the localizingBundle Parameters: localizingBundle - Sets the localizing bundle. The bundle is used for localizing the name and description. The bundle is located using the system ClassLoader. This resource name will looksomething like: org.netbeans.modules.visualweb.mymodule.Bundle Parameters: classPaths - List of classpath references: jar, zip, or folder. Can be empty or null. Parameters: javadocs - List of javadoc references, jar zip, or folder. Can be empty or null. sources, List of jar, zip, or folder. Can be empty or null; Library The new Library instance registered with the NetBeans Library Manager throws: IOException - if the library definition did not already exist or could not be updated |
|
|