亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jsf_core.tld

?? JSF的一個項目演示
?? TLD
?? 第 1 頁 / 共 2 頁
字號:
<?xml version="1.0" encoding="ISO-8859-1" ?><!-- Copyright 2004 Sun Microsystems, Inc. All rights reserved. SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.--><!DOCTYPE taglib  PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"  "http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"><taglib>  <!-- ========== Tag Library Description Elements ========================= -->  <tlib-version>1.0</tlib-version>  <jsp-version>1.2</jsp-version>  <short-name>f</short-name>  <uri>http://java.sun.com/jsf/core</uri>  <description>    The core JavaServer Faces custom actions that are independent of    any particular RenderKit.  </description>  <!-- ========== Tag Library Validator ==================================== -->  <!-- This TLV verifies that a Faces tag has an ID if it is a        child or sibling of a JSTL conditional or iterator tag  -->  <validator>    <validator-class>      com.sun.faces.taglib.jsf_core.CoreValidator    </validator-class>    <description>      This tag library validator verifies certain semantic restrictions on the      use of JavaServer Faces component actions, including the requirement that      component tags nested inside a JSTL conditional tag must have a value      specified for the "id" attribute.    </description>  </validator>  <!-- ============== Configuration Listener ============== -->  <!--        This ServletContextListener initializes the runtime environment        of the JavaServer Faces Reference Implementation when a web        application including it is initialized by the container.  -->  <listener>    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>  </listener>  <!-- ========== Tag Descriptions ========================================= -->  <tag>    <name>actionListener</name>    <tag-class>com.sun.faces.taglib.jsf_core.ActionListenerTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Register an ActionListener instance on the UIComponent associated      with the closest parent UIComponent custom action.    </description>    <attribute>      <name>type</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        Fully qualified Java class name of an ActionListener to be        created and registered.      </description>    </attribute>  </tag>  <tag>    <name>attribute</name>    <tag-class>javax.faces.webapp.AttributeTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Add an attribute to the UIComponent associated with the closest      parent UIComponent custom action.    </description>    <attribute>      <name>name</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        The name of the component attribute to be set.      </description>    </attribute>    <attribute>      <name>value</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        The value of the component attribute to be set.      </description>    </attribute>  </tag>  <tag>    <name>convertDateTime</name>    <tag-class>com.sun.faces.taglib.jsf_core.ConvertDateTimeTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Register a DateTimeConverter instance on the UIComponent associated      with the closest parent UIComponent custom action.    </description>    <attribute>      <name>dateStyle</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Predefined formatting style which determines how the date        component of a date string is to be formatted and parsed.        Applied only if type is "date" or "both".  Valid values        are "default", "short", "medium", "long", and "full".        Default value is "default".      </description>    </attribute>    <attribute>      <name>locale</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Locale whose predefined styles for dates and times are used        during formatting or parsing.  If not specified, the Locale        returned by FacesContext.getViewRoot().getLocale() will be used.        Value must be either a VB expression that evaluates to a        java.util.Locale instance, or a String that is valid to pass as        the first argument to the constructor java.util.Locale(String        language, String country).  The empty string is passed as the        second argument.      </description>    </attribute>    <attribute>      <name>pattern</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Custom formatting pattern which determines how the        date/time string should be formatted and parsed.      </description>    </attribute>    <attribute>      <name>timeStyle</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Predefined formatting style which determines how the        time component of a date string is to be formatted and        parsed.  Applied only if type is "time" or "both".        Valid values are "default", "short", "medium", "long",        and "full".  Default value is "default".      </description>    </attribute>    <attribute>      <name>timeZone</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Time zone in which to interpret any time information in the date        String.  Value must be either a VB expression that evaluates to        a java.util.TimeVone instance, or a String that is a timezone ID        as described in the javadocs for        java.util.TimeZone.getTimeZone().      </description>    </attribute>    <attribute>      <name>type</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Specifies what contents the string value will be        formatted to include, or parsed expecting.  Valid        values are "date", "time", and "both".  Default        value is "date".      </description>    </attribute>  </tag>  <tag>    <name>convertNumber</name>    <tag-class>com.sun.faces.taglib.jsf_core.ConvertNumberTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Register a NumberConverter instance on the UIComponent associated      with the closest parent UIComponent custom action.    </description>    <attribute>      <name>currencyCode</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        ISO 4217 currency code, applied only when        formatting currencies.      </description>    </attribute>    <attribute>      <name>currencySymbol</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Currency symbol, applied only when formatting        currencies.      </description>    </attribute>    <attribute>      <name>groupingUsed</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Flag specifying whether formatted output will        contain grouping separators.  Expressions must        evaluate to a boolean.  Default value        is true.      </description>    </attribute>    <attribute>      <name>integerOnly</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Flag specifying whether only the integer part        of the value will be formatted and parsed.        Expressions must evaluate to a boolean.        Default value is false.      </description>    </attribute>    <attribute>      <name>locale</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Locale whose predefined styles for numbers        are used during formatting and parsing.  If        not specified, the Locale returned by        FacesContext.getViewRoot().getLocale()        will be used.  Expressions must evaluate to        a java.util.Locale.      </description>    </attribute>    <attribute>      <name>maxFractionDigits</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Maximum number of digits that will be formatted        in the fractional portion of the output.  Expressions        must evaluate to an int.      </description>    </attribute>    <attribute>      <name>maxIntegerDigits</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Maximum number of digits that will be formatted        in the integer portion of the output.  Expressions        must evaluate to an int.      </description>    </attribute>    <attribute>      <name>minFractionDigits</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Minimum number of digits that will be formatted        in the fractional portion of the output.  Expressions        must evaluate to an int.      </description>    </attribute>    <attribute>      <name>minIntegerDigits</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Minimum number of digits that will be formatted        in the integer portion of the output.  Expressions        must evaluate to an int.      </description>    </attribute>    <attribute>      <name>pattern</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Custom formatting pattern which determins how the        number string should be formatted and parsed.      </description>    </attribute>    <attribute>      <name>type</name>      <required>false</required>      <rtexprvalue>false</rtexprvalue>      <description>        Specifies how the number string will be formatted        and parsed.  Valid values are "number", "currency",        and "percentage".  Default value is "number".      </description>    </attribute>  </tag>  <tag>    <name>converter</name>    <tag-class>javax.faces.webapp.ConverterTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Register a named Converter instance on the UIComponent      associated with the closest parent UIComponent custom action.    </description>    <attribute>      <name>converterId</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        Converter identifier of the Converter instance to be        created and registered.      </description>    </attribute>  </tag>  <tag>    <name>facet</name>    <tag-class>javax.faces.webapp.FacetTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>JSP</body-content>    <description>      Register a named facet on the UIComponent associated with      the closest parent UIComponent custom action.    </description>    <attribute>      <name>name</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        Name of the facet to be created.      </description>    </attribute>  </tag>  <tag>    <name>loadBundle</name>    <tag-class>com.sun.faces.taglib.jsf_core.LoadBundleTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>empty</body-content>    <description>      Load a resource bundle localized for the Locale      of the current view, and expose it (as a Map) in      the request attributes of the current request.    </description>    <attribute>      <name>basename</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        Base name of the resource bundle        to be loaded.      </description>    </attribute>    <attribute>      <name>var</name>      <required>true</required>      <rtexprvalue>false</rtexprvalue>      <description>        Name of a request scope attribute under which        the resource bundle will be exposed as a Map.      </description>    </attribute>  </tag>  <tag>    <name>param</name>    <tag-class>com.sun.faces.taglib.jsf_core.ParameterTag</tag-class>    <tei-class>com.sun.faces.taglib.FacesTagExtraInfo</tei-class>    <body-content>JSP</body-content>    <description>      Add a child UIParameter component to the UIComponent

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久777精品电影网影网 | 成人精品国产一区二区4080 | 国产精品丝袜一区| 国产精品素人视频| 亚洲黄色性网站| 成人性生交大片| 亚洲精品一区二区三区在线观看 | 成人国产视频在线观看| 777久久久精品| 亚洲第一狼人社区| 色婷婷久久综合| 国产精品久久久久久久午夜片| 久久精品99久久久| 日韩一区和二区| 日韩影视精彩在线| 欧美天天综合网| 一区二区三区不卡视频| 91丨国产丨九色丨pron| 国产精品美日韩| 91在线观看美女| 亚洲美女一区二区三区| 97久久精品人人做人人爽50路| 日韩欧美国产一二三区| 免费观看一级特黄欧美大片| 日韩一区二区三| 国产美女精品一区二区三区| 国产亚洲女人久久久久毛片| 成人黄色在线网站| 亚洲色图在线视频| 欧美人狂配大交3d怪物一区 | 奇米色777欧美一区二区| 日韩一级免费一区| 国产盗摄女厕一区二区三区| 国产精品久久久久久久久动漫| 91片在线免费观看| 日韩黄色片在线观看| 国产精品污网站| 欧美性色黄大片| 国产精品一区二区不卡| 亚洲精品国产视频| www国产精品av| 精品视频在线免费看| 国产一区二区精品在线观看| 亚洲女同一区二区| 欧美色男人天堂| 成人免费电影视频| 久久av老司机精品网站导航| 《视频一区视频二区| 久久久精品国产免大香伊| 欧美亚洲国产bt| 97精品国产露脸对白| 日韩福利视频网| 午夜免费久久看| 亚洲成人动漫av| 亚洲综合色婷婷| 一区二区不卡在线视频 午夜欧美不卡在| 91免费视频观看| 99久久777色| 色先锋aa成人| 国产农村妇女精品| 丁香激情综合国产| 亚洲蜜臀av乱码久久精品| 中文字幕免费一区| 国产婷婷精品av在线| 欧美一区二区私人影院日本| 91老师国产黑色丝袜在线| 成人黄色小视频| 日本韩国一区二区三区| 欧美欧美欧美欧美| 精品久久一二三区| 国产精品国产三级国产aⅴ入口 | 久久久无码精品亚洲日韩按摩| 国产蜜臀av在线一区二区三区| 成人欧美一区二区三区1314| 天堂va蜜桃一区二区三区漫画版| 美女久久久精品| 一本到三区不卡视频| 日韩一级免费观看| 一区二区三区丝袜| 国产麻豆91精品| 精品视频在线免费| 久久蜜臀中文字幕| 日本免费新一区视频| 成人精品在线视频观看| 欧美一区二区三区在线观看视频| 中文字幕中文字幕一区二区| 日韩电影在线免费看| 日本福利一区二区| 国产精品国产馆在线真实露脸 | 狠狠色2019综合网| 欧美日韩免费观看一区三区| 国产精品欧美久久久久一区二区 | 欧美aaaaa成人免费观看视频| 色综合天天综合狠狠| 精品国产免费视频| 秋霞午夜av一区二区三区| 在线观看欧美精品| 一区二区三区国产精品| 99国产精品一区| 一区二区在线观看av| 91色在线porny| 亚洲主播在线观看| 欧美日韩一区二区欧美激情| 亚洲精品videosex极品| 在线一区二区三区做爰视频网站| 中文字幕一区二区三| 99这里只有久久精品视频| 国产精品色呦呦| 在线免费观看不卡av| 亚洲国产精品久久久久秋霞影院| 精品视频一区二区三区免费| 青娱乐精品视频在线| 久久免费午夜影院| 99久久久国产精品免费蜜臀| 亚洲综合无码一区二区| 欧美一区二视频| 成人丝袜高跟foot| 五月激情综合婷婷| 精品噜噜噜噜久久久久久久久试看| 国产呦精品一区二区三区网站 | 欧美日本在线看| 国产乱码精品一品二品| 中文字幕在线一区免费| 欧美高清激情brazzers| 国产一区在线视频| 一级日本不卡的影视| 精品91自产拍在线观看一区| 色综合久久88色综合天天| 麻豆视频观看网址久久| 亚洲精品乱码久久久久久黑人 | 91.成人天堂一区| 成人国产免费视频| 捆绑紧缚一区二区三区视频 | 在线视频欧美区| 国产乱子伦一区二区三区国色天香| 亚洲精品久久7777| 国产欧美一区二区精品性色超碰| 欧美年轻男男videosbes| 色婷婷国产精品久久包臀| 国产成人在线视频播放| 亚洲精品视频在线| 福利电影一区二区三区| 亚洲人一二三区| 国产日本欧洲亚洲| 欧美一区二区私人影院日本| 色美美综合视频| 99久久精品国产精品久久| 成人综合婷婷国产精品久久免费| 蜜臀av在线播放一区二区三区| 亚洲成人av资源| 午夜成人在线视频| 全国精品久久少妇| 久久av中文字幕片| 国产一区二区三区综合| 国产一区二区三区四区五区入口| 久久99精品久久久久久国产越南| 蜜桃av一区二区| 国产美女娇喘av呻吟久久| 国产精品影视在线| 成人综合婷婷国产精品久久蜜臀| 不卡一区二区三区四区| 91黄色激情网站| 日韩一区二区免费在线观看| 精品久久久久久久久久久久包黑料 | 99re这里只有精品首页| 欧美视频一二三区| 日韩一区二区三区视频| 国产亚洲精品bt天堂精选| 国产精品乱人伦一区二区| 亚洲综合男人的天堂| 蜜桃视频一区二区三区| 国产suv精品一区二区883| 色综合天天性综合| 欧美videos中文字幕| 一区二区三区四区中文字幕| 久久99精品久久久久| 欧洲中文字幕精品| 国产婷婷一区二区| 日韩avvvv在线播放| 色老汉av一区二区三区| 久久九九久久九九| 石原莉奈在线亚洲三区| 本田岬高潮一区二区三区| 欧美tickling网站挠脚心| 亚洲成人你懂的| 99久久国产综合精品麻豆| 久久精品亚洲乱码伦伦中文 | 欧美aaaaaa午夜精品| 91浏览器打开| 国产精品青草久久| 国内不卡的二区三区中文字幕| 欧美日本在线观看| 亚洲大片一区二区三区| 色妹子一区二区| 亚洲猫色日本管| 99精品国产91久久久久久| 亚洲欧美日韩国产中文在线| 久久国产尿小便嘘嘘| 欧美大片一区二区三区| 日本aⅴ精品一区二区三区|