diff options
Diffstat (limited to 'src/main/resources')
| -rw-r--r-- | src/main/resources/boot/OD/Item.xsd | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/OD/Module.xsd | 1 | ||||
| -rw-r--r-- | src/main/resources/mapFiles/PropertiesMap.xml | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/main/resources/boot/OD/Item.xsd b/src/main/resources/boot/OD/Item.xsd index c46de43..22c4ace 100644 --- a/src/main/resources/boot/OD/Item.xsd +++ b/src/main/resources/boot/OD/Item.xsd @@ -89,6 +89,7 @@ <xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string" />
+ <xs:attribute name="mutable" type="xs:boolean" default="true" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
diff --git a/src/main/resources/boot/OD/Module.xsd b/src/main/resources/boot/OD/Module.xsd index 98220fd..2b8fefd 100644 --- a/src/main/resources/boot/OD/Module.xsd +++ b/src/main/resources/boot/OD/Module.xsd @@ -220,6 +220,7 @@ <xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="name" type="xs:string" />
+ <xs:attribute name="mutable" type="xs:boolean" default="true" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
diff --git a/src/main/resources/mapFiles/PropertiesMap.xml b/src/main/resources/mapFiles/PropertiesMap.xml index cdb27fc..b13d98d 100644 --- a/src/main/resources/mapFiles/PropertiesMap.xml +++ b/src/main/resources/mapFiles/PropertiesMap.xml @@ -5,6 +5,9 @@ <field name="mName" type="string" direct="false" get-method="getName" set-method="setName">
<bind-xml name="name" node="attribute"/>
</field>
+ <field name="mMutable" type="boolean" direct="false" get-method="isMutable" set-method="setMutable">
+ <bind-xml name="mutable" node="attribute"/>
+ </field>
<field name="mValue" type="string" direct="false" get-method="getValue" set-method="setValue">
<bind-xml node="text"/>
</field>
|
