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

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

?? jspxml.xsd

?? 員工信息管理系統以企業的員工為中心
?? XSD
?? 第 1 頁 / 共 2 頁
字號:
  </xsd:simpleType>

  <xsd:simpleType name = "PlugInType">
    <xsd:annotation>
      <xsd:documentation>
        valid values for a plugin type
      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base = "xsd:NMTOKEN">
      <xsd:enumeration value = "bean"/>
      <xsd:enumeration value = "applet"/>
    </xsd:restriction>
  </xsd:simpleType>

  <xsd:simpleType name = "AlignType">
    <xsd:annotation>
      <xsd:documentation>
        Buffer size is xkb.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:restriction base = "xsd:NMTOKEN">
      <xsd:enumeration value = "top"/>
      <xsd:enumeration value = "middle"/>
      <xsd:enumeration value = "bottom"/>
      <xsd:enumeration value = "left"/>
      <xsd:enumeration value = "right"/>
    </xsd:restriction>
  </xsd:simpleType>

  <!-- Elements follow -->

  <xsd:element name = "root">
    <xsd:annotation>
      <xsd:documentation>
        The root element of all JSP documents is named root.
        
        Authors may, if they wish, include schema location information.
        If specified, the information may appear as attributes of
        the root element as follows:

        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/JSP/Page xsd-file-location"

        Documents should not specify the system identifier of a DTD
        in a DOCTYPE declaration.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:complexContent>
        <xsd:extension base = "Body">
          <xsd:attribute name = "version" fixed = "1.2" type = "xsd:string"/>
        </xsd:extension>
      </xsd:complexContent>
    </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "directive.page">
    <xsd:annotation>
      <xsd:documentation>
        directive.page is the "page directive".
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "language" default = "java" type = "xsd:string"/>
      <xsd:attribute name = "extends" type = "TypeName"/>
      <xsd:attribute name = "contentType" default = "text/html; ISO-8859-1" type = "ContentType"/>
      <xsd:attribute name = "pageEncoding" use = "optional" type = "PageEncoding"/>
      <xsd:attribute name = "import" type = "ImportList"/>
      <xsd:attribute name = "session" default = "true" type = "Bool"/>
      <xsd:attribute name = "buffer" default = "8kb" type = "BufferSize"/>
      <xsd:attribute name = "autoFlush" default = "true" type = "Bool"/>
      <xsd:attribute name = "isThreadSafe" default = "true" type = "Bool"/>
      <xsd:attribute name = "info" type = "xsd:string"/>
      <xsd:attribute name = "errorPage" type = "RelativeURL"/>
      <xsd:attribute name = "isErrorPage" default = "false" type = "Bool"/>
    </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "directive.include">
    <xsd:annotation>
      <xsd:documentation>
        directive.include is the "include directive".
	This element does not appear on XML views of JSP pages.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "file" use = "required" type = "RelativeURL"/>
    </xsd:complexType>
  </xsd:element>

  <xsd:element name = "scriptlet" type = "BasicType">
    <xsd:annotation>
      <xsd:documentation>
        The representation of a scriplet.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>
  
  <xsd:element name = "declaration" type = "BasicType">
    <xsd:annotation>
      <xsd:documentation>
        The reprsentation of a declaration.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>
  
  <xsd:element name = "expression" type = "BasicType">
    <xsd:annotation>
      <xsd:documentation>
        The representation of an expression.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>
 
  <xsd:element name = "text" type = "BasicType">
    <xsd:annotation>
      <xsd:documentation>
        Verbatim template text.
      </xsd:documentation>
    </xsd:annotation>
  </xsd:element>

  <xsd:element name = "useBean">
    <xsd:annotation>
      <xsd:documentation>
        useBean instantiates or accesses a bean in the specified scope.
        
        Constraint: The allowed combinations of attributes are:
        
          class [type] | type [( class | beanName)]
        
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:complexContent>
        <xsd:extension base="Body">
          <xsd:attribute ref = "jsp:id"/>
          <xsd:attribute name = "id" use = "required" type = "Identifier"/>
          <xsd:attribute name = "class" type = "TypeName"/>
          <xsd:attribute name = "type" type = "TypeName"/>
          <xsd:attribute name = "beanName" type = "TypeName"/>
          <xsd:attribute name = "scope" default = "page" type = "Scope"/>
        </xsd:extension>
      </xsd:complexContent>
    </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "setProperty">
    <xsd:annotation>
      <xsd:documentation>
        setProperty changes the value of an object property.
        
        Constraint: The object named by the name must have been
        "introduced" to the JSP processor using either the
        jsp:useBean action or a custom action with an associated
        VariableInfo entry for this name.

        Exact valid combinations are not expressable in XML Schema.
        They are:

        name="Identifier" property="*"
        name="Identifier" property="Identfiier" param="string"
        name="Identifier" property="Identifier" value="string"
                
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "name" use = "required" type = "Identifier"/>
      <xsd:attribute name = "property" use = "required" type = "SetProp"/>
      <xsd:attribute name = "param" type = "xsd:string"/>
      <xsd:attribute name = "value" type = "xsd:string"/>
    </xsd:complexType>
  </xsd:element>

  <xsd:element name = "getProperty">
    <xsd:annotation>
      <xsd:documentation>
        getProperty obtains the value of an object property.
        
        Constraint: The object named by the name must have been
        "introduced" to the JSP processor using either the
        jsp:useBean action or a custom action with an associated
        VariableInfo entry for this name.
        
        ???The spec is interpreted as restricting the values of
        property to Identifier.
      </xsd:documentation>
    </xsd:annotation>
    <xsd:complexType>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "name" use = "required" type = "Identifier"/>
      <xsd:attribute name = "property" use = "required" type = "Identifier"/>
    </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "include">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element ref = "param" minOccurs = "0" maxOccurs = "unbounded"/>
      </xsd:sequence>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "flush" default = "false" type = "Bool"/>
      <xsd:attribute name = "page" use = "required" type = "RTERelativeURL"/>
    </xsd:complexType>
  </xsd:element>

  <xsd:element name = "forward">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element ref = "param" minOccurs = "0" maxOccurs = "unbounded"/>
      </xsd:sequence>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "page" use = "required" type = "RTERelativeURL"/>
     </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "plugin">
    <xsd:complexType> <!-- content only! -->
      <xsd:sequence>
        <xsd:element ref = "params" minOccurs = "0" maxOccurs = "1"/>
        <xsd:element name = "fallback" minOccurs = "0" maxOccurs = "1" type = "Body"/>
      </xsd:sequence>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "type" use = "required" type = "PlugInType"/>
      <xsd:attribute name = "code" type = "xsd:anyURI"/>
      <xsd:attribute name = "codebase" type = "xsd:anyURI"/>
      <xsd:attribute name = "align" type = "AlignType"/>
      <xsd:attribute name = "archive">
        <xsd:simpleType>
           <xsd:list itemType="xsd:anyURI"/>
        </xsd:simpleType>
      </xsd:attribute>
      <xsd:attribute name = "height" type = "Length"/>
      <xsd:attribute name = "hspace" type = "xsd:int"/>
      <xsd:attribute name = "jreversion" default = "1.2" type = "xsd:string"/>
      <xsd:attribute name = "name" type = "xsd:NMTOKEN"/>
      <xsd:attribute name = "vspace" type = "xsd:int"/>
      <xsd:attribute name = "width" type = "Length"/>
      <xsd:attribute name = "nspluginurl" type = "xsd:anyURI"/>
      <xsd:attribute name = "iepluginurl" type = "xsd:anyURI"/>
    </xsd:complexType>
  </xsd:element>
  
  <xsd:element name = "params">
    <xsd:complexType>
       <xsd:sequence>
         <xsd:element ref = "param" minOccurs = "1" maxOccurs = "unbounded"/>
       </xsd:sequence>
      <xsd:attribute ref = "jsp:id"/>
    </xsd:complexType>
  </xsd:element>

  <xsd:element name = "param">
    <xsd:complexType>
      <xsd:attribute ref = "jsp:id"/>
      <xsd:attribute name = "name" use = "required" type = "xsd:NMTOKEN"/>
      <xsd:attribute name = "value" use = "required" type = "xsd:string"/>
    </xsd:complexType>
  </xsd:element>
  
</xsd:schema>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区不卡在线| 欧美精品一区二区三区很污很色的| 老司机精品视频一区二区三区| 一区二区高清在线| 一区二区视频免费在线观看| 国产精品五月天| 国产精品伦一区| 亚洲欧美自拍偷拍| 日韩亚洲欧美一区二区三区| 91香蕉视频污| 精品视频在线免费观看| 欧美日韩三级视频| 国产清纯美女被跳蛋高潮一区二区久久w| 麻豆精品在线看| 国内外精品视频| 成人免费毛片片v| 一本久道中文字幕精品亚洲嫩 | 一本大道综合伊人精品热热| 成人免费视频caoporn| 91免费看`日韩一区二区| 色综合天天综合网天天狠天天| 日本道免费精品一区二区三区| 日本韩国欧美一区| 91精品国产综合久久福利软件| 欧美精品丝袜久久久中文字幕| 日韩一级在线观看| 国产精品天天看| 亚洲综合视频在线观看| 日本成人在线视频网站| 国产精品羞羞答答xxdd| 91浏览器入口在线观看| 6080yy午夜一二三区久久| 欧美精品一区二| 亚洲色大成网站www久久九九| 午夜精品久久久久久久蜜桃app| 免费的成人av| 99免费精品在线| 欧美变态tickling挠脚心| 国产精品欧美精品| 日韩黄色片在线观看| 成人午夜私人影院| 欧美电影在线免费观看| 国产日本一区二区| 日本不卡一区二区三区| gogogo免费视频观看亚洲一| 欧美一级精品在线| 一区二区三区蜜桃网| 国产很黄免费观看久久| 欧美日韩大陆一区二区| 欧美激情在线免费观看| 蜜臀久久久久久久| 色综合中文综合网| 国产精品高潮久久久久无| 首页综合国产亚洲丝袜| 99久久99久久综合| 欧美精品一区在线观看| 日韩激情av在线| 99国产麻豆精品| 国产乱码精品一区二区三区忘忧草| 国产精品萝li| 国产精品中文字幕日韩精品| 欧美亚洲国产bt| 《视频一区视频二区| 激情五月激情综合网| 欧美在线小视频| 亚洲欧美视频在线观看视频| 高清久久久久久| 久久综合久久鬼色| 看片的网站亚洲| 91精品国产一区二区三区蜜臀 | 欧美电影免费观看高清完整版在| 亚洲一级二级在线| 色噜噜偷拍精品综合在线| 国产精品国产三级国产普通话蜜臀| 国内久久精品视频| 日韩欧美成人一区二区| 日韩高清电影一区| 51精品久久久久久久蜜臀| 午夜精品久久久久| 欧美老年两性高潮| 日韩中文字幕1| 日韩欧美中文字幕制服| 免费观看成人鲁鲁鲁鲁鲁视频| 欧美丰满少妇xxxbbb| 日本午夜精品视频在线观看| 欧美伦理视频网站| 美女尤物国产一区| www久久久久| 成人av电影免费在线播放| 中国色在线观看另类| 色呦呦网站一区| 亚洲18影院在线观看| 91麻豆精品国产| 国产一区二区三区在线观看免费| 久久精品视频一区二区三区| 成人听书哪个软件好| 亚洲图片另类小说| 在线观看91av| 国产一区二区三区| 日韩美女精品在线| 9191国产精品| 国产精品一区二区免费不卡| 中文字幕日韩av资源站| 91福利在线看| 激情欧美一区二区| 亚洲欧洲韩国日本视频| 欧美色综合影院| 韩国av一区二区| 一区二区三区毛片| 精品国精品自拍自在线| 99re热视频精品| 蜜桃av一区二区三区| 国产精品污网站| 一本久道久久综合中文字幕| 亚洲天堂福利av| 精品日韩欧美在线| 91丝袜高跟美女视频| 蜜桃视频在线观看一区| 日韩一区中文字幕| 日韩精品一区在线观看| 色香蕉久久蜜桃| 免费成人美女在线观看| 欧美午夜视频网站| 高清国产一区二区三区| 免费成人性网站| 亚洲午夜国产一区99re久久| 国产日韩成人精品| 日韩欧美成人一区| 在线免费观看日本欧美| 丰满岳乱妇一区二区三区| 无码av免费一区二区三区试看| 国产精品美女久久久久高潮| 日韩一区二区三区四区| 日本韩国精品一区二区在线观看| 国产美女av一区二区三区| 丝袜美腿成人在线| 亚洲一区二区五区| 中文字幕一区在线观看视频| 精品国产乱码久久久久久免费| 欧洲在线/亚洲| 色综合久久久久久久久久久| 国产高清精品久久久久| 六月丁香婷婷久久| 日本亚洲一区二区| 亚洲h精品动漫在线观看| 亚洲三级电影网站| 中文字幕一区不卡| 国产精品日产欧美久久久久| 精品嫩草影院久久| 日韩免费在线观看| 日韩一区二区三区av| 欧美久久一二区| 欧美日韩高清一区二区不卡 | 一区在线中文字幕| 国产精品国产三级国产aⅴ原创| 久久久久88色偷偷免费| 精品久久久三级丝袜| 欧美大胆人体bbbb| 久久久久久亚洲综合影院红桃 | av综合在线播放| jlzzjlzz欧美大全| 欧美自拍丝袜亚洲| 欧美调教femdomvk| 8v天堂国产在线一区二区| 欧美日韩在线精品一区二区三区激情| 色综合欧美在线视频区| 91福利精品视频| 免费观看在线综合色| 国产成人精品影视| 亚洲精品国产一区二区三区四区在线| 国产精品久久久久久久午夜片| 亚洲国产电影在线观看| 日韩伦理av电影| 日韩中文字幕av电影| 久久99久久精品| 成人av在线资源网站| 色婷婷久久久综合中文字幕| 欧美日韩一级二级| 26uuu国产电影一区二区| 国产精品网站在线播放| 一区二区日韩av| 蜜桃视频在线观看一区| 国产精品综合二区| 色噜噜狠狠成人网p站| 欧美日本韩国一区二区三区视频| 欧美成人精品3d动漫h| 久久99国产精品免费网站| 成人黄色综合网站| 亚洲欧美日韩中文字幕一区二区三区| 亚洲精品视频在线观看免费| 亚洲一区二区三区三| 精一区二区三区| 91视频免费播放| 精品理论电影在线| 韩国av一区二区三区| 国产欧美日韩三区| 国产在线国偷精品免费看| 狠狠网亚洲精品| 91久久奴性调教| 久久久久久99精品|