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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? jsf_core.tld

?? 開發(fā)工具為myeclipse,數(shù)據(jù)庫為oracle
?? 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

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲成av人在线观看| 久久精品欧美一区二区三区不卡| 久久成人久久爱| 欧美精品成人一区二区三区四区| 亚洲特级片在线| 99国产精品99久久久久久| 国产精品美女久久久久aⅴ| 成人做爰69片免费看网站| 国产精品美女久久久久久久久久久 | 欧美电影免费观看高清完整版在线观看| 亚洲一区二区三区四区在线免费观看| 在线免费观看日本欧美| 午夜不卡av在线| 日韩无一区二区| 国产白丝精品91爽爽久久| 国产精品久久久久久久久免费桃花 | 欧美日韩精品欧美日韩精品| 日本美女一区二区三区| 精品毛片乱码1区2区3区| 国产98色在线|日韩| 亚洲欧美国产毛片在线| 欧美三级电影网| 国产又粗又猛又爽又黄91精品| 国产精品久久二区二区| 欧美日韩在线免费视频| 国模套图日韩精品一区二区| 亚洲欧美日韩人成在线播放| 欧美一区永久视频免费观看| 粉嫩嫩av羞羞动漫久久久| 亚洲综合免费观看高清在线观看| 日韩精品一区在线| 91视频一区二区三区| 蜜臀国产一区二区三区在线播放| 国产精品污污网站在线观看| 欧美日韩一本到| 国产精品资源站在线| 亚洲高清一区二区三区| 国产欧美视频一区二区三区| 精品视频在线视频| 成人av动漫网站| 美女在线一区二区| 亚洲一区二区三区四区五区中文| 久久久亚洲精品一区二区三区| 一本大道av伊人久久综合| 国产在线播精品第三| 亚洲国产成人高清精品| 国产精品天干天干在观线| 欧美一级理论性理论a| 一本色道久久加勒比精品| 国产美女av一区二区三区| 亚洲成av人片一区二区梦乃| 国产精品久久影院| 久久影音资源网| 欧美精选一区二区| 91小视频免费观看| 国产不卡视频一区| 久久精品久久综合| 五月天激情小说综合| 亚洲欧美日韩在线不卡| 欧美激情一区二区三区蜜桃视频 | 久久er99精品| 亚洲国产精品精华液网站| 亚洲欧美一区二区久久| 中文字幕av在线一区二区三区| 欧美videossexotv100| 91精品国产91热久久久做人人| 91福利在线观看| 99久久精品一区二区| av网站免费线看精品| 成人午夜电影网站| 成人激情图片网| 粉嫩欧美一区二区三区高清影视| 国产露脸91国语对白| 国产一区二区主播在线| 狠狠v欧美v日韩v亚洲ⅴ| 五月天欧美精品| 日本欧美在线观看| 热久久一区二区| 久久99精品久久久久久国产越南| 麻豆91小视频| 久久66热偷产精品| 韩国成人精品a∨在线观看| 久久草av在线| 国产成人亚洲综合a∨猫咪| 国产福利一区在线| 成人免费电影视频| av在线不卡电影| 91美女片黄在线观看| 色成人在线视频| 欧美日韩国产精品成人| 7878成人国产在线观看| 日韩美女视频在线| 久久久久久久电影| 中文字幕在线不卡| 一区二区高清免费观看影视大全| 亚洲综合色成人| 蜜桃一区二区三区在线| 国产在线不卡一卡二卡三卡四卡| 岛国一区二区在线观看| 91精品福利在线| 91精品国产综合久久福利软件| 欧美电视剧在线看免费| 欧美国产一区视频在线观看| 中文字幕中文乱码欧美一区二区| 一区二区三区自拍| 蜜桃av一区二区在线观看| 国产成人精品一区二区三区网站观看| 成人av网站在线观看| 欧美日韩国产一区二区三区地区| 日韩欧美久久一区| 国产精品成人一区二区三区夜夜夜| 亚洲自拍偷拍av| 精品影视av免费| 91在线国产福利| 日韩精品最新网址| |精品福利一区二区三区| 日本不卡高清视频| 成人深夜福利app| 欧美日韩国产经典色站一区二区三区 | 麻豆精品国产传媒mv男同| 国产成人免费在线| 欧美无乱码久久久免费午夜一区| 欧美成人r级一区二区三区| 中文字幕一区av| 免费在线视频一区| 99久久精品费精品国产一区二区| 7777女厕盗摄久久久| 中文一区二区在线观看| 日韩国产精品久久久| av电影在线观看完整版一区二区| 在线成人av影院| 亚洲色图一区二区| 国产精品99久久久久久宅男| 欧美日韩在线三区| 综合在线观看色| 国产精品66部| 欧美一区二区三区四区视频| 亚洲欧美日韩在线不卡| 激情五月婷婷综合| 欧美剧情电影在线观看完整版免费励志电影 | 国产亚洲短视频| 偷拍与自拍一区| 97久久精品人人做人人爽| 精品国产伦一区二区三区观看体验 | 国产欧美一区二区在线观看| 日本va欧美va欧美va精品| 91啦中文在线观看| 国产日韩欧美制服另类| 久久www免费人成看片高清| 欧美日韩成人综合在线一区二区| 国产精品毛片大码女人| 国产在线观看免费一区| 日韩欧美国产一二三区| 性欧美大战久久久久久久久| 91在线精品秘密一区二区| 国产精品美女久久久久久| 国产麻豆精品theporn| 欧美成人video| 美女在线观看视频一区二区| 91精品国产欧美一区二区18| 亚洲电影第三页| 欧美日韩国产免费| 亚洲综合免费观看高清完整版在线 | 亚洲一区二区3| 91在线国产福利| 国产精品国产三级国产有无不卡| 国产一区二区三区精品欧美日韩一区二区三区| 欧美日韩视频在线第一区 | 国产成人精品午夜视频免费| 欧美videossexotv100| 久久精品国产亚洲高清剧情介绍| 欧美写真视频网站| 亚洲电影一级黄| 欧美一区二区三区系列电影| 蜜臀久久久久久久| 日韩丝袜美女视频| 精品亚洲欧美一区| 国产亚洲欧美一级| 99久久久无码国产精品| 亚洲少妇中出一区| 欧美日韩综合一区| 视频一区二区中文字幕| 欧美电视剧免费全集观看| 国产成人免费视频一区| 国产精品美女久久福利网站| av电影在线观看不卡| 一卡二卡三卡日韩欧美| 欧美色网站导航| 久色婷婷小香蕉久久| 久久久精品综合| av网站一区二区三区| 亚洲一区二区在线播放相泽| 69久久99精品久久久久婷婷 | 精品一区二区在线看| 国产午夜精品理论片a级大结局| 风间由美一区二区av101| 亚洲欧美日韩综合aⅴ视频| 欧美日韩国产在线播放网站| 精品在线观看视频| 亚洲免费在线观看|