Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

JSF Libraries

This extension point is deprecated, use org.eclipse.jst.common.project.facet.libraryProviders as a replacement.

Identifier:
extension.pluginProvidedJsfLibraries

Since:
2.0

Description:
This extension point allows clients to create named sets of jars for use with JavaServer Faces Applications.

This extension point is provisional and subject to change

Deprecated Use org.eclipse.jst.common.project.facet.libraryProviders ext-pt

Configuration Markup:

<!ELEMENT extension ( jsfLibrary*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #REQUIRED

name  CDATA #IMPLIED

>


The jsfLibrary element is deprecated

<!ELEMENT jsfLibrary EMPTY>

<!ATTLIST jsfLibrary

name                 CDATA #REQUIRED

label                CDATA #IMPLIED

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.


  • Deprecated name - A unique, non-translatable, name for the library. The plugin developer is responsible for ensuring uniqueness within the plugin. This name, in combination with the plugin id, is used to identify the classpath container reference.
  • Deprecated label - Translatable string for displaying the library name.
  • Deprecated isImplementation - Flag indicating that this libary is declared to be a JSF implementation and not just a JSF component library.
  • Deprecated maxVersionSupported - Used to declare which JSF specification this library will support.
  • Deprecated archiveFilesDelegate - class that must extend org.eclipse.jst.jsf.core.jsflibraryregistry.JSFLibraryArchiveFilesDelegate to supply a collection of IPaths to jars in the library

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


  <extension point=
"org.eclipse.jst.jsf.core.pluginProvidedJsfLibraries"
>
    <jsfLibrary       
       name=
"MyComponentLib1"

       label=
"%MyComponentLib1.translatableLabel"

       isImplementation=
"false"

       maxVersionSupported=
"v1_1"

       archiveFilesDelegate=
"com.acme.jsf.libraries.MyComponentLibraryFiles"
/>
  </extension>

Supplied Implementation:
none


Copyright (c) 2007 Oracle Corporation. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v10.html Contributors: Gerry Kessler - initial API and implementation


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire