- java.lang.Object
-
- javax.servlet.jsp.tagext.TagVariableInfo
-
public class TagVariableInfo extends Object
Variable information for a tag in a Tag Library; This class is instantiated from the Tag Library Descriptor file (TLD) and is available only at translation time. This object should be immutable. This information is only available in JSP 1.2 format TLDs or above.
-
-
Constructor Summary
Constructors Constructor and Description TagVariableInfo(String nameGiven, String nameFromAttribute, String className, boolean declare, int scope)
Constructor for TagVariableInfo.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description String
getClassName()
The body of the <variable-class> element.boolean
getDeclare()
The body of the <declare> element.String
getNameFromAttribute()
The body of the <name-from-attribute> element.String
getNameGiven()
The body of the <name-given> element.int
getScope()
The body of the <scope> element.
-
-
-
Constructor Detail
-
TagVariableInfo
public TagVariableInfo(String nameGiven, String nameFromAttribute, String className, boolean declare, int scope)
Constructor for TagVariableInfo.- Parameters:
nameGiven
- value of <name-given>nameFromAttribute
- value of <name-from-attribute>className
- value of <variable-class>declare
- value of <declare>scope
- value of <scope>
-
-
Method Detail
-
getNameGiven
public String getNameGiven()
The body of the <name-given> element.- Returns:
- The variable name as a constant
-
getNameFromAttribute
public String getNameFromAttribute()
The body of the <name-from-attribute> element. This is the name of an attribute whose (translation-time) value will give the name of the variable. One of <name-given> or <name-from-attribute> is required.- Returns:
- The attribute whose value defines the variable name
-
getClassName
public String getClassName()
The body of the <variable-class> element.- Returns:
- The name of the class of the variable or 'java.lang.String' if not defined in the TLD.
-
getDeclare
public boolean getDeclare()
The body of the <declare> element.- Returns:
- Whether the variable is to be declared or not. If not defined in the TLD, 'true' will be returned.
-
getScope
public int getScope()
The body of the <scope> element.- Returns:
- The scope to give the variable. NESTED scope will be returned if not defined in the TLD.
-
-
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:02:08 Cette version de la page est en cache (à la date du 21/08/2025 17:02:08) 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/tagvariableinfo.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
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.