Class CompositeResourceLibrary

java.lang.Object
org.apache.myfaces.view.facelets.tag.composite.CompositeResourceLibrary
All Implemented Interfaces:
TagLibrary

public class CompositeResourceLibrary extends Object implements TagLibrary
This class create composite component tag handlers for "http://java.sun.com/jsf/composite/" namespace. Note that the class that create composite component tag handlers using its own namespace defined in facelet taglib .xml file see TagLibraryConfig.TagLibraryImpl
Version:
$Revision$ $Date$
Author:
Leonardo Uribe (latest modification by $Author$)
  • Field Details

  • Constructor Details

    • CompositeResourceLibrary

      public CompositeResourceLibrary(FacesContext facesContext, String namespacePrefix)
  • Method Details

    • handles

      public boolean handles(String resourceName)
    • containsFunction

      public boolean containsFunction(String ns, String name)
      Description copied from interface: TagLibrary
      If this library contains the specified function name
      Specified by:
      containsFunction in interface TagLibrary
      Parameters:
      ns - namespace
      name - function name
      Returns:
      true if handled
    • containsNamespace

      public boolean containsNamespace(String ns)
      Description copied from interface: TagLibrary
      If this library contains the passed namespace
      Specified by:
      containsNamespace in interface TagLibrary
      Parameters:
      ns - namespace
      Returns:
      true if the namespace is used in this library
    • containsTagHandler

      public boolean containsTagHandler(String ns, String localName)
      Description copied from interface: TagLibrary
      If this library contains a TagHandler for the namespace and local name
      Specified by:
      containsTagHandler in interface TagLibrary
      Parameters:
      ns - namespace
      localName - local name
      Returns:
      true if handled by this library
    • createFunction

      public Method createFunction(String ns, String name)
      Description copied from interface: TagLibrary
      Return a Method instance for the passed namespace and name
      Specified by:
      createFunction in interface TagLibrary
      Parameters:
      ns - namespace
      name - function name
      Returns:
    • createTagHandler

      public TagHandler createTagHandler(String ns, String localName, TagConfig tag) throws FacesException
      Description copied from interface: TagLibrary
      Create a new instance of a TagHandler, using the passed TagConfig
      Specified by:
      createTagHandler in interface TagLibrary
      Parameters:
      ns - namespace
      localName - local name
      tag - configuration information
      Returns:
      a new TagHandler instance
      Throws:
      FacesException