javax.faces.webapp.UIComponentClassicTagBase.popTag()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(66)

本文整理了Java中javax.faces.webapp.UIComponentClassicTagBase.popTag()方法的一些代码示例,展示了UIComponentClassicTagBase.popTag()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。UIComponentClassicTagBase.popTag()方法的具体详情如下:
包路径:javax.faces.webapp.UIComponentClassicTagBase
类名称:UIComponentClassicTagBase
方法名:popTag

UIComponentClassicTagBase.popTag介绍

[英]The pageContext's request scope map is used to hold a stack of JSP tag objects seen so far, so that a new tag can find the parent tag that encloses it. Access to the parent tag is used to find the parent UIComponent for the component associated with this tag plus some other uses.
[中]pageContext的请求范围映射用于保存迄今为止看到的JSP标记对象堆栈,以便新标记可以找到包含它的父标记。对父标记的访问用于查找与此标记关联的组件的父组件以及其他一些用途。

代码示例

代码示例来源:origin: org.apache.myfaces.core/myfaces-api

public int doEndTag() throws JspException
  popTag();
  UIComponent component = getComponentInstance();

代码示例来源:origin: org.apache.myfaces/com.springsource.org.apache.myfaces.javax.faces

public int doEndTag() throws JspException
  popTag();
  UIComponent component = getComponentInstance();

相关文章

微信公众号

最新文章

更多

UIComponentClassicTagBase类方法