javax.servlet.jsp.tagext

Class TagFileInfo


  • public class TagFileInfo
    extends Object
    Tag information for a tag file in a Tag Library; This class is instantiated from the Tag Library Descriptor file (TLD) and is available only at translation time.
    Since:
    JSP 2.0
    • Constructor Detail

      • TagFileInfo

        public TagFileInfo(String name,
                           String path,
                           TagInfo tagInfo)
        Constructor for TagFileInfo from data in the JSP 2.0 format for TLD. This class is to be instantiated only from the TagLibrary code under request from some JSP code that is parsing a TLD (Tag Library Descriptor). Note that, since TagLibibraryInfo reflects both TLD information and taglib directive information, a TagFileInfo instance is dependent on a taglib directive. This is probably a design error, which may be fixed in the future.
        Parameters:
        name - The unique action name of this tag
        path - Where to find the .tag file implementing this action, relative to the location of the TLD file.
        tagInfo - The detailed information about this tag, as parsed from the directives in the tag file.
    • Method Detail

      • getName

        public String getName()
        The unique action name of this tag.
        Returns:
        The (short) name of the tag.
      • getPath

        public String getPath()
        Where to find the .tag file implementing this action.
        Returns:
        The path of the tag file, relative to the TLD, or "." if the tag file was defined in an implicit tag file.
      • getTagInfo

        public TagInfo getTagInfo()
        Returns information about this tag, parsed from the directives in the tag file.
        Returns:
        a TagInfo object containing information about this tag

Traduction non disponible

Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.

Version en cache

21/08/2025 17:21:59 Cette version de la page est en cache (à la date du 21/08/2025 17:21:59) afin d'accélérer le traitement.
Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.

Document créé le 24/12/2007, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/servlet/jsp/tagext/TagFileInfo.html

L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.

Références

  1. Consulter le document html Langue du document :fr Manuel PHP : https://docs.oracle.com, TagFileInfo (Java(TM) EE 7 Specification APIs)

Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.