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

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

?? jspxml.xsd

?? 用JSP+ORACLE寫的 公司個人信息網絡管理系統(JSP).
?? 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一区二区三区免费野_久草精品视频
婷婷夜色潮精品综合在线| 5月丁香婷婷综合| 久久美女艺术照精彩视频福利播放 | 中文字幕一区二区三区在线不卡 | 午夜免费久久看| 欧美精品在线视频| 日本美女一区二区三区视频| 欧美一区二区三区在| 蜜桃免费网站一区二区三区| 日韩一区二区三区四区| 精品一区二区日韩| 国产亚洲欧洲997久久综合 | 91捆绑美女网站| 亚洲18色成人| 日韩女同互慰一区二区| 国产一区二区三区在线看麻豆| 欧美国产在线观看| 色美美综合视频| 美腿丝袜一区二区三区| 久久久国产精品麻豆| 91小视频在线观看| 天天免费综合色| 久久一留热品黄| 日本韩国欧美在线| 国内精品久久久久影院一蜜桃| 亚洲国产成人私人影院tom| 91麻豆国产在线观看| 蜜桃av噜噜一区二区三区小说| 久久色.com| 在线精品视频免费观看| 九色porny丨国产精品| 国产精品久久看| 日韩三级av在线播放| 97久久超碰精品国产| 久久成人久久爱| 一区二区三区精密机械公司| 日韩精品一区二区三区视频| 99久久99久久精品免费观看 | 欧美这里有精品| 激情久久久久久久久久久久久久久久| 国产精品精品国产色婷婷| 7799精品视频| aaa欧美大片| 国内精品第一页| 性做久久久久久免费观看| 国产精品久久久久aaaa樱花| 日韩欧美国产一区二区在线播放 | 欧美剧在线免费观看网站 | 91丝袜呻吟高潮美腿白嫩在线观看| 午夜伊人狠狠久久| 中文字幕亚洲精品在线观看| 精品国产一区二区三区四区四| 欧美午夜不卡在线观看免费| 成人免费视频app| 经典一区二区三区| 五月综合激情婷婷六月色窝| 一区二区三区免费观看| 国产精品美女久久久久久久久 | 欧美狂野另类xxxxoooo| 91最新地址在线播放| 国产精华液一区二区三区| 免费看欧美女人艹b| 亚洲成人av电影在线| 亚洲视频一区在线| 久久精品日产第一区二区三区高清版| 日韩午夜激情电影| 欧美一区二区三区免费大片| 欧美私人免费视频| 在线精品视频一区二区| 一本色道a无线码一区v| 成人黄动漫网站免费app| 高潮精品一区videoshd| 成人小视频在线| 成人午夜又粗又硬又大| 国产成人综合自拍| 国产福利一区在线| 国产超碰在线一区| 成人免费视频网站在线观看| 菠萝蜜视频在线观看一区| 成人久久视频在线观看| 日韩va亚洲va欧美va久久| 麻豆91在线看| 99国产精品久| 日韩免费视频一区二区| 综合久久一区二区三区| 日产精品久久久久久久性色| 激情综合网天天干| 91久久一区二区| 26uuuu精品一区二区| 夜夜爽夜夜爽精品视频| 麻豆免费看一区二区三区| 99久久精品一区| 欧美www视频| 亚洲精品久久久蜜桃| 国产露脸91国语对白| 欧美偷拍一区二区| 国产欧美精品一区| 天堂在线一区二区| 99久久精品免费看国产| www国产精品av| 午夜影视日本亚洲欧洲精品| www.成人网.com| 精品剧情v国产在线观看在线| 一区二区欧美在线观看| 国产黄色91视频| 91精品国产欧美一区二区18| 亚洲精品写真福利| 大美女一区二区三区| 欧美一区二区网站| 亚洲综合视频在线观看| 99久久精品费精品国产一区二区| www一区二区| 五月天中文字幕一区二区| 色猫猫国产区一区二在线视频| 久久久国产一区二区三区四区小说 | 国产日韩综合av| 裸体一区二区三区| 欧美亚一区二区| 亚洲免费高清视频在线| 成人性生交大片免费看在线播放| 日韩欧美成人一区| 日韩av电影免费观看高清完整版在线观看| 91美女在线看| 亚洲欧洲美洲综合色网| 国产精品一区不卡| 久久综合九色综合97婷婷| 日本vs亚洲vs韩国一区三区| 欧美日韩情趣电影| 一区二区三区.www| 在线一区二区视频| 一区二区三区在线观看欧美| 99久久精品免费看国产免费软件| 国产精品视频线看| 丰满少妇在线播放bd日韩电影| 精品国产精品网麻豆系列| 日韩高清在线电影| 日韩一区二区三区观看| 美国十次了思思久久精品导航| 69久久夜色精品国产69蝌蚪网| 午夜精品久久久久久久蜜桃app| 日本欧美一区二区| 成人国产精品免费观看动漫| 日韩精品一区二区在线| 亚洲乱码日产精品bd| 国产精品一品视频| 日韩午夜精品视频| 午夜电影一区二区三区| 在线影院国内精品| 国产精品沙发午睡系列990531| 久久精品国产一区二区三| 欧美日韩视频一区二区| 亚洲毛片av在线| 成人福利视频网站| 色拍拍在线精品视频8848| 亚洲国产va精品久久久不卡综合| 欧美日韩高清在线| 蜜臀a∨国产成人精品| 久久青草国产手机看片福利盒子 | 男女激情视频一区| 26uuu久久综合| 成人动漫一区二区在线| 一区二区三区精品视频在线| 欧美伦理电影网| 极品少妇一区二区三区精品视频| 国产亚洲欧美色| 色呦呦一区二区三区| 日韩影院在线观看| 久久久久国产精品免费免费搜索| 成人黄色小视频| 亚洲va韩国va欧美va精品| 欧美大白屁股肥臀xxxxxx| 国产成人午夜精品影院观看视频 | 捆绑调教一区二区三区| 久久久久久久久久久99999| 色婷婷av一区二区三区大白胸| 日本特黄久久久高潮| 国产精品视频第一区| 欧美三级资源在线| 国产一区二区三区蝌蚪| 亚洲精品日日夜夜| 欧美成人午夜电影| 色天使久久综合网天天| 麻豆精品一区二区综合av| 中文字幕一区二区在线观看 | 欧美精品1区2区3区| 国产精品一区二区在线播放| 18欧美乱大交hd1984| 在线不卡免费欧美| 成人av在线资源| 日本午夜精品视频在线观看| 国产精品理论片| 精品国产免费一区二区三区四区| 99精品国产热久久91蜜凸| 裸体一区二区三区| 一区二区三区中文字幕精品精品 | 伊人婷婷欧美激情| 国产视频一区二区在线| 欧美精品 日韩| 91免费看视频| 国产久卡久卡久卡久卡视频精品|