sectionタグは、一連の仕様記述実行範囲を指定します。
sectionタグのアトリビュートは以下を指定します。
アトリビュート名 | 省略 | 意味 | 省略時の動作 |
---|---|---|---|
name | 不可 | nameアトリビュートには、仕様記述の実行範囲の名前を名標で記述します。validateタグのsectionアトリビュートに対応します。 | - |
コンテントには0個以上のblock、term、verify、valueタグを順不同に記述し、そのあとに0個以上のdecisionタグを記述します。
<eSpec xmlns="http://interstage.fujitsu.com/schemas/uji/eSpec" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://interstage.fujitsu.com/schemas/uji/eSpec http://interstage.fujitsu.com/schemas/uji/espec.xsd"> <config> <version>6.0</version> </config> <specification name="sample"> <section name="check1"> <block ... > ... </block> <term ... /> <verify ... /> <value ... /> ... <decision ... > ... </decision> </section> </specification> </eSpec>