diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2014-05-15 15:35:34 +0200 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2014-05-15 15:35:34 +0200 |
| commit | b11e80cf20bd65b7a52508ef24b1dce657dc01a4 (patch) | |
| tree | 4a7653b5a838bb6feff1cfe42d84c76f52804aae | |
| parent | aa01888a2fbe96b757fd1ba877939b780c855191 (diff) | |
Support 'Layer' property
| -rw-r--r-- | src/main/resources/boot/property/CAProp.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/property/EAProp.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/property/ODProp.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/property/SCProp.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/boot/property/SMProp.xml | 1 | ||||
| -rw-r--r-- | src/main/resources/module.xml | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/src/main/resources/boot/property/CAProp.xml b/src/main/resources/boot/property/CAProp.xml index acd6b90..7b65beb 100644 --- a/src/main/resources/boot/property/CAProp.xml +++ b/src/main/resources/boot/property/CAProp.xml @@ -3,6 +3,7 @@ DefaultValue="" IsMutable="false" />
<PropertyDescription Name="Complexity"
IsClassIdentifier="true" DefaultValue="Composite" IsMutable="false" />
+ <PropertyDescription Name="Layer" IsClassIdentifier="false" DefaultValue="0" IsMutable="true"/>
<PropertyDescription Name="Type" IsClassIdentifier="true"
DefaultValue="ActivityDesc" IsMutable="false" />
</AllProperties>
diff --git a/src/main/resources/boot/property/EAProp.xml b/src/main/resources/boot/property/EAProp.xml index aced7f3..b9208ed 100644 --- a/src/main/resources/boot/property/EAProp.xml +++ b/src/main/resources/boot/property/EAProp.xml @@ -3,6 +3,7 @@ DefaultValue="" IsMutable="true" />
<PropertyDescription Name="Complexity"
IsClassIdentifier="true" DefaultValue="Elementary" IsMutable="false" />
+ <PropertyDescription Name="Layer" IsClassIdentifier="false" DefaultValue="0" IsMutable="true"/>
<PropertyDescription Name="Type" IsClassIdentifier="true"
DefaultValue="ActivityDesc" IsMutable="false" />
</AllProperties>
diff --git a/src/main/resources/boot/property/ODProp.xml b/src/main/resources/boot/property/ODProp.xml index bd7257d..3d7a6f1 100644 --- a/src/main/resources/boot/property/ODProp.xml +++ b/src/main/resources/boot/property/ODProp.xml @@ -5,4 +5,5 @@ DefaultValue="OutcomeDesc" IsMutable="false" />
<PropertyDescription Name="Breakapart"
IsClassIdentifier="false" DefaultValue="0" IsMutable="false" />
+ <PropertyDescription Name="Layer" IsClassIdentifier="false" DefaultValue="0" IsMutable="true"/>
</AllProperties>
diff --git a/src/main/resources/boot/property/SCProp.xml b/src/main/resources/boot/property/SCProp.xml index f1f586f..cff8532 100644 --- a/src/main/resources/boot/property/SCProp.xml +++ b/src/main/resources/boot/property/SCProp.xml @@ -3,4 +3,5 @@ DefaultValue="" IsMutable="true" />
<PropertyDescription Name="Type" IsClassIdentifier="true"
DefaultValue="Script" IsMutable="false" />
+ <PropertyDescription Name="Layer" IsClassIdentifier="false" DefaultValue="0" IsMutable="true"/>
</AllProperties>
diff --git a/src/main/resources/boot/property/SMProp.xml b/src/main/resources/boot/property/SMProp.xml index 6705443..7239463 100644 --- a/src/main/resources/boot/property/SMProp.xml +++ b/src/main/resources/boot/property/SMProp.xml @@ -3,4 +3,5 @@ DefaultValue="" IsMutable="true" />
<PropertyDescription Name="Type" IsClassIdentifier="true"
DefaultValue="StateMachine" IsMutable="false" />
+ <PropertyDescription Name="Layer" IsClassIdentifier="false" DefaultValue="0" IsMutable="true"/>
</AllProperties>
diff --git a/src/main/resources/module.xml b/src/main/resources/module.xml index 1e9cc73..ea700da 100644 --- a/src/main/resources/module.xml +++ b/src/main/resources/module.xml @@ -2,6 +2,7 @@ <Info>
<Description>CRISTAL Development Items, such as resource factories and workflows. Also includes a demonstrative description factory</Description>
<Version>${version}</Version>
+ <Layer>1</Layer>
<Dependency>CristalXMLDB</Dependency>
</Info>
<ResourceURL>uk/ac/uwe/cristaldev/resources/</ResourceURL>
|
