JSF Libraries

org.eclipse.jst.jsf.core.jsfLibraries

1.5

This extension point allows clients to create named sets of jars for use with JavaServer Faces Applications. Deprecated - adopters should now use org.eclipse.jst.jsf.core.pluginProvidedJsfLibraries

<!ELEMENT extension (jsfLibrary*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #IMPLIED>


<!ELEMENT jsfLibrary EMPTY>

<!ATTLIST jsfLibrary

name                 CDATA #REQUIRED

isImplementation     (true | false)

maxVersionSupported  (v1_1|v1_2|UNKNOWN)

archiveFilesDelegate CDATA #REQUIRED>

A named collection of jars that will be added to the classpath as a classpath container to a project that references it.



The following is an example of usage of pluginProvidedJsfLibraries extension point:

  

<extension point=

"org.eclipse.jst.jsf.core.jsfLibraries"

>

<jsfLibrary name=

"MyComponentLib1"

isImplementation=

"false"

maxVersionSupported=

"v1_1"

archiveFilesDelegate=

"com.acme.jsf.libraries.MyComponentLibraryFiles"

/>

</extension>

Value of the attribute class must be a fully qualified name of a Java class that extends the abstract class org.eclipse.jst.jsf.core.jsflibraryregistry.JSFLibraryArchiveFilesDelegate and has a public 0-arg constructor.

none