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

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

?? jsf_core.tld

?? 一些的javaee5的實用代碼
?? 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一区二区三区免费野_久草精品视频
精品久久久久久久久久久久久久久久久 | 亚洲午夜视频在线| 欧美一级理论性理论a| 成人sese在线| 国产又黄又大久久| 亚洲bdsm女犯bdsm网站| 亚洲视频中文字幕| 久久久亚洲欧洲日产国码αv| 欧美另类一区二区三区| 成人app网站| 国产精品1024| 国模少妇一区二区三区| 婷婷综合另类小说色区| 亚洲自拍偷拍网站| 亚洲欧美日韩国产一区二区三区| 中文幕一区二区三区久久蜜桃| 在线电影院国产精品| 色久优优欧美色久优优| 成人aaaa免费全部观看| 国产成人av影院| 久久99热国产| 免费成人av资源网| 日日夜夜精品视频免费| 亚洲影院免费观看| 一区二区三区中文在线| 亚洲精品免费看| 亚洲麻豆国产自偷在线| 中文字幕佐山爱一区二区免费| 国产午夜亚洲精品理论片色戒 | 色综合一区二区| 91在线观看视频| aaa亚洲精品| av亚洲精华国产精华| 波多野结衣在线一区| 风流少妇一区二区| 粉嫩嫩av羞羞动漫久久久| 国产91露脸合集magnet | 国产成人免费网站| 国产精品一区二区在线观看不卡| 狠狠狠色丁香婷婷综合激情| 国产一区二区调教| 国产乱子轮精品视频| 国产成人啪午夜精品网站男同| 国产激情精品久久久第一区二区| 国产suv精品一区二区883| 国产精品一二一区| 成人午夜激情片| 91丨九色丨国产丨porny| 一本一本久久a久久精品综合麻豆| av在线不卡网| 欧美亚洲一区三区| 日韩一区二区三区免费观看| 久久综合久久99| 国产精品伦理在线| 亚洲欧洲中文日韩久久av乱码| 一区二区三区 在线观看视频| 亚洲精品视频自拍| 午夜欧美电影在线观看| 美女在线视频一区| 国产成人精品免费视频网站| www.亚洲在线| 欧美性色综合网| 日韩欧美一二三区| 中文子幕无线码一区tr| 一区二区在线观看av| 日本午夜一本久久久综合| 经典三级一区二区| 欧美日韩一卡二卡三卡| 欧美日韩国产bt| 日韩欧美国产综合一区| 国产精品少妇自拍| 亚洲第一激情av| 精品影院一区二区久久久| www.欧美色图| 欧美一个色资源| 中文字幕中文乱码欧美一区二区| 亚洲综合久久久久| 国产麻豆成人传媒免费观看| 一本一本久久a久久精品综合麻豆| 欧美一区二区视频在线观看2022 | 欧美精品在欧美一区二区少妇| 日韩免费电影网站| 综合激情成人伊人| 蜜桃精品视频在线| av成人免费在线| 日韩欧美激情四射| 一区二区不卡在线播放 | 不卡一二三区首页| 91超碰这里只有精品国产| 中文字幕精品一区二区三区精品| 亚洲一区在线免费观看| 国产激情视频一区二区在线观看| 欧美日韩在线播放| 欧美国产一区视频在线观看| 视频一区欧美日韩| 91女人视频在线观看| 国产亚洲精品aa午夜观看| 午夜精品久久久久久不卡8050| www.亚洲免费av| 精品福利二区三区| 五月婷婷欧美视频| 91免费精品国自产拍在线不卡| 欧美精品一区二区高清在线观看| 亚洲综合男人的天堂| 粉嫩av一区二区三区在线播放| 欧美一级日韩免费不卡| 国产精品美女一区二区三区| 久久av资源站| 91麻豆精品国产综合久久久久久| 中文字幕亚洲不卡| 国产成人亚洲综合a∨猫咪| 欧美一级国产精品| 亚洲成a人片在线观看中文| 色综合色狠狠天天综合色| 国产精品污网站| 国产精品综合av一区二区国产馆| 精品对白一区国产伦| 午夜精品久久久久久久蜜桃app| 91在线视频官网| 国产精品丝袜一区| 国产一区二区看久久| 日韩精品中午字幕| 免费在线成人网| 欧美日韩国产首页| 亚洲一区二区欧美日韩 | 久久免费精品国产久精品久久久久| 视频一区二区不卡| 欧美日韩成人一区二区| 亚洲国产一区二区a毛片| 色婷婷综合中文久久一本| 亚洲人午夜精品天堂一二香蕉| 成人免费毛片app| 国产精品免费av| 95精品视频在线| 国产精品乱人伦中文| 99国产欧美久久久精品| 成人免费小视频| 色悠久久久久综合欧美99| 亚洲免费观看视频| 色一区在线观看| 午夜av一区二区三区| 91精品国产综合久久小美女| 狂野欧美性猛交blacked| 久久综合九色综合欧美就去吻| 国产麻豆午夜三级精品| 国产精品视频看| 色综合久久中文字幕综合网| 午夜久久久久久| 精品伦理精品一区| 粉嫩蜜臀av国产精品网站| 中文字幕中文在线不卡住| 欧日韩精品视频| 三级精品在线观看| 精品日韩欧美在线| 成人一道本在线| 亚洲精品国产一区二区精华液 | 91国偷自产一区二区三区成为亚洲经典| 亚洲欧美色综合| 欧美日本一区二区在线观看| 男女性色大片免费观看一区二区| 日韩欧美电影一二三| 成人一级黄色片| 一区二区三区久久| 日韩欧美你懂的| 成人av资源网站| 亚洲成a人片综合在线| 精品成人佐山爱一区二区| 成人黄页毛片网站| 亚洲高清中文字幕| 国产亚洲欧美激情| 在线免费一区三区| 国产在线不卡视频| 一区二区三区在线视频免费| 欧美一区二区视频免费观看| 国产福利视频一区二区三区| 亚洲一区二区三区四区在线观看 | 国产麻豆视频精品| 夜夜嗨av一区二区三区四季av| 日韩你懂的电影在线观看| 99re在线视频这里只有精品| 日韩精品1区2区3区| 国产精品久久久久久户外露出| 欧美巨大另类极品videosbest| 国产精品亚洲一区二区三区妖精| 亚洲日本在线看| 欧美大黄免费观看| 91久久一区二区| 国产美女精品一区二区三区| 亚洲韩国精品一区| 国产日韩欧美高清在线| 欧美精品一卡两卡| 91视频观看视频| 欧美主播一区二区三区| 国产一区二区美女诱惑| 天天综合天天做天天综合| 国产精品乱码一区二区三区软件| 欧美一区二区三区在线电影| 色综合久久综合网97色综合| 国产高清不卡一区二区| 日韩国产在线一|