亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
亚洲六月丁香色婷婷综合久久| 亚洲视频每日更新| 国产精品美女www爽爽爽| 丝袜美腿亚洲一区二区图片| 国产精品资源在线| 欧美一区二视频| 亚洲激情校园春色| 成人h动漫精品一区二区| 日韩精品一区二区三区在线播放| 一区二区三区不卡在线观看| 国产成都精品91一区二区三| 欧美一卡二卡在线| 五月天亚洲精品| 91成人在线免费观看| 国产精品久久久久久久浪潮网站| 免费在线观看一区| 欧美日韩国产一区二区三区地区| 亚洲色图在线视频| 99这里只有精品| 国产精品私人影院| 国产91精品露脸国语对白| 精品盗摄一区二区三区| 蜜桃久久久久久久| 日韩欧美一区在线观看| 欧美剧情片在线观看| 亚洲bt欧美bt精品| 久久精品免费观看| 日韩丝袜美女视频| 91丨国产丨九色丨pron| 色猫猫国产区一区二在线视频| 国产亚洲精品aa| 国产高清成人在线| 国产女人水真多18毛片18精品视频| 久久不见久久见免费视频1| 日韩精品一区二区三区在线播放| 另类调教123区| 日韩精品一区二| 国产最新精品精品你懂的| 久久夜色精品一区| 国产成人在线视频免费播放| 国产精品少妇自拍| 99久久er热在这里只有精品15| 综合色天天鬼久久鬼色| 色综合色狠狠天天综合色| 亚洲国产日韩一区二区| 在线成人小视频| 韩国欧美一区二区| 国产精品毛片无遮挡高清| 色国产综合视频| 丝袜亚洲精品中文字幕一区| 欧美一级黄色片| 国产91清纯白嫩初高中在线观看| 国产精品国产三级国产aⅴ中文| 91麻豆自制传媒国产之光| 亚洲国产aⅴ成人精品无吗| 欧美精品亚洲一区二区在线播放| 久久成人羞羞网站| 国产精品免费久久久久| 在线观看日韩一区| 久久精品国产99| 亚洲丝袜另类动漫二区| 欧美精品色一区二区三区| 国产一区二三区| 亚洲美女屁股眼交3| 日韩欧美一区二区视频| 成人禁用看黄a在线| 亚洲va欧美va人人爽午夜| 久久综合久色欧美综合狠狠| 97se亚洲国产综合在线| 奇米精品一区二区三区在线观看| 亚洲国产精品av| 91麻豆精品国产自产在线 | 色伊人久久综合中文字幕| 视频一区免费在线观看| 国产欧美日韩一区二区三区在线观看| 色一情一乱一乱一91av| 国模一区二区三区白浆| 亚洲电影第三页| 日本一区二区成人在线| 在线综合视频播放| 色婷婷国产精品综合在线观看| 美国欧美日韩国产在线播放| 亚洲免费伊人电影| 国产视频一区在线播放| 日韩一区二区三区电影| 色激情天天射综合网| 国产白丝网站精品污在线入口| 亚洲成人av在线电影| 中文字幕日韩av资源站| 久久久久久久久97黄色工厂| 欧美美女一区二区三区| 91麻豆免费看| kk眼镜猥琐国模调教系列一区二区| 免费观看久久久4p| 天天av天天翘天天综合网 | 欧美国产1区2区| 精品国一区二区三区| 欧美一区二区三区男人的天堂| 91麻豆国产自产在线观看| 成人一级片在线观看| 国产一区999| 国内精品久久久久影院一蜜桃| 丝袜美腿亚洲色图| 亚洲地区一二三色| 一区二区三区高清| 亚洲综合成人在线| 亚洲成人动漫在线观看| 亚洲高清免费在线| 亚洲二区视频在线| 亚洲成国产人片在线观看| 亚洲国产日日夜夜| 视频一区视频二区中文字幕| 偷拍与自拍一区| 日韩电影免费一区| 蜜乳av一区二区| 国产综合色产在线精品| 国产在线精品视频| 国产福利精品导航| 成人丝袜18视频在线观看| 成人av影视在线观看| 99亚偷拍自图区亚洲| 91国产免费看| 51精品秘密在线观看| 日韩欧美高清一区| 国产亚洲精品7777| 国产精品不卡视频| 亚洲国产日韩av| 免费高清在线一区| 国产成人综合在线| voyeur盗摄精品| 欧美日韩在线播放一区| 91精品国产综合久久精品图片| 精品少妇一区二区三区免费观看 | 中文字幕在线观看不卡| 亚洲同性同志一二三专区| 亚洲综合男人的天堂| 热久久一区二区| 国产大陆精品国产| 91久久精品日日躁夜夜躁欧美| 欧美日韩国产精品自在自线| 精品久久一区二区| 中文字幕欧美一| 三级在线观看一区二区 | 色婷婷综合久久久中文一区二区| 欧美天天综合网| 久久综合色天天久久综合图片| 中文字幕一区在线观看| 午夜精品久久久久久久99水蜜桃| 国产一区二区三区在线观看免费| 99久久伊人网影院| 日韩一区二区免费高清| 国产精品免费视频观看| 免费观看91视频大全| 91视频精品在这里| 精品久久久久香蕉网| 亚洲欧美一区二区三区国产精品 | 日韩美女一区二区三区四区| 综合欧美亚洲日本| 麻豆精品一二三| 色婷婷亚洲综合| 久久久综合网站| 天堂成人国产精品一区| 91理论电影在线观看| 精品国产一区二区三区四区四| 亚洲男人的天堂一区二区| 国产精品一区不卡| 91精品国产品国语在线不卡| 中文字幕综合网| 国内久久婷婷综合| 欧美一二三区在线观看| 亚洲激情一二三区| 99国产精品99久久久久久| 精品国产乱码久久| 日韩av中文字幕一区二区三区| proumb性欧美在线观看| 国产欧美一二三区| 精品影院一区二区久久久| 欧美人与z0zoxxxx视频| |精品福利一区二区三区| 国产精品18久久久久久久久久久久 | 正在播放一区二区| 久久久久国产精品厨房| 免费欧美在线视频| 欧美日韩综合不卡| 亚洲天堂网中文字| 国产不卡视频在线播放| 久久久午夜精品理论片中文字幕| 肉丝袜脚交视频一区二区| 欧美色视频一区| 一区二区三区在线播放| 色婷婷亚洲综合| 一区二区三区在线观看国产 | 午夜精品久久久久久久久久| 色94色欧美sute亚洲线路二| 中文字幕欧美一| 韩国女主播一区二区三区| 亚洲成人在线免费| 国产高清久久久| 久久久久久亚洲综合影院红桃| 韩国女主播成人在线|