From 388a76a73c8a8131c7af8df2ba03cf16511c8ea5 Mon Sep 17 00:00:00 2001 From: Andrew Branson Date: Mon, 4 Jun 2012 15:37:34 +0200 Subject: Mavenized --- .classpath | 7 +- .project | 6 + .settings/org.eclipse.jdt.core.prefs | 8 +- build.xml | 52 ----- cristaldev.jar | Bin 64595 -> 34127 bytes pom.xml | 22 +++ resources/boot/CA/CompositeActivityFactory.xml | 108 ---------- resources/boot/CA/ElementaryActivityFactory.xml | 108 ---------- resources/boot/CA/ItemDescriptionFactoryWf.xml | 107 ---------- resources/boot/CA/ItemDescriptionWf.xml | 1 - resources/boot/CA/ManageCompositeActDef.xml | 219 --------------------- resources/boot/CA/ManageElementaryActDef.xml | 219 --------------------- resources/boot/CA/ManageSchema.xml | 218 -------------------- resources/boot/CA/ManageScript.xml | 219 --------------------- resources/boot/CA/SchemaFactoryWf.xml | 108 ---------- resources/boot/CA/ScriptFactoryWf.xml | 108 ---------- resources/boot/EA/AssignNewVersionFromLast.xml | 20 -- resources/boot/EA/CreateItem.xml | 20 -- resources/boot/EA/CreateNewLocalObjectDef.xml | 19 -- resources/boot/EA/EditActivityDef.xml | 19 -- resources/boot/EA/EditPropertyDescription.xml | 20 -- resources/boot/EA/EditSchema.xml | 19 -- resources/boot/EA/EditScriptDefinition.xml | 19 -- resources/boot/EA/SetInstanceWorkflow.xml | 20 -- resources/boot/OD/ChooseWorkflow.xsd | 14 -- resources/boot/OD/New.xsd | 3 - resources/boot/OD/NewDevObjectDef.xsd | 20 -- resources/boot/OD/NewLocalObjectDef.xsd | 20 -- .../boot/SC/CreateNewNumberedVersionFromLast.xml | 27 --- resources/boot/SC/InstantiateItem.xml | 28 --- resources/boot/SC/LocalObjectDefCreator.xml | 54 ----- resources/boot/SC/New.xml | 7 - resources/boot/SC/SetWorkflow.xml | 41 ---- resources/boot/property/CAProp.xml | 5 - resources/boot/property/DescProp.xml | 2 - resources/boot/property/EAProp.xml | 5 - resources/boot/property/ODProp.xml | 5 - resources/boot/property/SCProp.xml | 4 - resources/images/typeicons/factory_16.png | Bin 916 -> 0 bytes resources/images/typeicons/factory_32.png | Bin 2084 -> 0 bytes resources/images/typeicons/itemdescription_16.png | Bin 722 -> 0 bytes resources/images/typeicons/itemdescription_32.png | Bin 1782 -> 0 bytes src/main/module.xml | 82 ++++++++ .../resources/boot/CA/CompositeActivityFactory.xml | 108 ++++++++++ .../boot/CA/ElementaryActivityFactory.xml | 108 ++++++++++ .../resources/boot/CA/ItemDescriptionFactoryWf.xml | 107 ++++++++++ src/main/resources/boot/CA/ItemDescriptionWf.xml | 1 + .../resources/boot/CA/ManageCompositeActDef.xml | 219 +++++++++++++++++++++ .../resources/boot/CA/ManageElementaryActDef.xml | 219 +++++++++++++++++++++ src/main/resources/boot/CA/ManageSchema.xml | 218 ++++++++++++++++++++ src/main/resources/boot/CA/ManageScript.xml | 219 +++++++++++++++++++++ src/main/resources/boot/CA/SchemaFactoryWf.xml | 108 ++++++++++ src/main/resources/boot/CA/ScriptFactoryWf.xml | 108 ++++++++++ .../resources/boot/EA/AssignNewVersionFromLast.xml | 20 ++ src/main/resources/boot/EA/CreateItem.xml | 20 ++ .../resources/boot/EA/CreateNewLocalObjectDef.xml | 19 ++ src/main/resources/boot/EA/EditActivityDef.xml | 19 ++ .../resources/boot/EA/EditPropertyDescription.xml | 20 ++ src/main/resources/boot/EA/EditSchema.xml | 19 ++ .../resources/boot/EA/EditScriptDefinition.xml | 19 ++ src/main/resources/boot/EA/SetInstanceWorkflow.xml | 20 ++ src/main/resources/boot/OD/ChooseWorkflow.xsd | 14 ++ src/main/resources/boot/OD/New.xsd | 3 + src/main/resources/boot/OD/NewDevObjectDef.xsd | 20 ++ src/main/resources/boot/OD/NewLocalObjectDef.xsd | 20 ++ .../boot/SC/CreateNewNumberedVersionFromLast.xml | 27 +++ src/main/resources/boot/SC/InstantiateItem.xml | 28 +++ .../resources/boot/SC/LocalObjectDefCreator.xml | 54 +++++ src/main/resources/boot/SC/New.xml | 7 + src/main/resources/boot/SC/SetWorkflow.xml | 41 ++++ src/main/resources/boot/property/CAProp.xml | 5 + src/main/resources/boot/property/DescProp.xml | 2 + src/main/resources/boot/property/EAProp.xml | 5 + src/main/resources/boot/property/ODProp.xml | 5 + src/main/resources/boot/property/SCProp.xml | 4 + src/main/resources/images/typeicons/factory_16.png | Bin 0 -> 916 bytes src/main/resources/images/typeicons/factory_32.png | Bin 0 -> 2084 bytes .../images/typeicons/itemdescription_16.png | Bin 0 -> 722 bytes .../images/typeicons/itemdescription_32.png | Bin 0 -> 1782 bytes src/module.xml | 82 -------- 80 files changed, 1923 insertions(+), 1948 deletions(-) delete mode 100644 build.xml create mode 100644 pom.xml delete mode 100644 resources/boot/CA/CompositeActivityFactory.xml delete mode 100644 resources/boot/CA/ElementaryActivityFactory.xml delete mode 100644 resources/boot/CA/ItemDescriptionFactoryWf.xml delete mode 100644 resources/boot/CA/ItemDescriptionWf.xml delete mode 100644 resources/boot/CA/ManageCompositeActDef.xml delete mode 100644 resources/boot/CA/ManageElementaryActDef.xml delete mode 100644 resources/boot/CA/ManageSchema.xml delete mode 100644 resources/boot/CA/ManageScript.xml delete mode 100644 resources/boot/CA/SchemaFactoryWf.xml delete mode 100644 resources/boot/CA/ScriptFactoryWf.xml delete mode 100644 resources/boot/EA/AssignNewVersionFromLast.xml delete mode 100644 resources/boot/EA/CreateItem.xml delete mode 100644 resources/boot/EA/CreateNewLocalObjectDef.xml delete mode 100644 resources/boot/EA/EditActivityDef.xml delete mode 100644 resources/boot/EA/EditPropertyDescription.xml delete mode 100644 resources/boot/EA/EditSchema.xml delete mode 100644 resources/boot/EA/EditScriptDefinition.xml delete mode 100644 resources/boot/EA/SetInstanceWorkflow.xml delete mode 100644 resources/boot/OD/ChooseWorkflow.xsd delete mode 100644 resources/boot/OD/New.xsd delete mode 100644 resources/boot/OD/NewDevObjectDef.xsd delete mode 100644 resources/boot/OD/NewLocalObjectDef.xsd delete mode 100644 resources/boot/SC/CreateNewNumberedVersionFromLast.xml delete mode 100644 resources/boot/SC/InstantiateItem.xml delete mode 100644 resources/boot/SC/LocalObjectDefCreator.xml delete mode 100644 resources/boot/SC/New.xml delete mode 100644 resources/boot/SC/SetWorkflow.xml delete mode 100644 resources/boot/property/CAProp.xml delete mode 100644 resources/boot/property/DescProp.xml delete mode 100644 resources/boot/property/EAProp.xml delete mode 100644 resources/boot/property/ODProp.xml delete mode 100644 resources/boot/property/SCProp.xml delete mode 100644 resources/images/typeicons/factory_16.png delete mode 100644 resources/images/typeicons/factory_32.png delete mode 100644 resources/images/typeicons/itemdescription_16.png delete mode 100644 resources/images/typeicons/itemdescription_32.png create mode 100644 src/main/module.xml create mode 100644 src/main/resources/boot/CA/CompositeActivityFactory.xml create mode 100644 src/main/resources/boot/CA/ElementaryActivityFactory.xml create mode 100644 src/main/resources/boot/CA/ItemDescriptionFactoryWf.xml create mode 100644 src/main/resources/boot/CA/ItemDescriptionWf.xml create mode 100644 src/main/resources/boot/CA/ManageCompositeActDef.xml create mode 100644 src/main/resources/boot/CA/ManageElementaryActDef.xml create mode 100644 src/main/resources/boot/CA/ManageSchema.xml create mode 100644 src/main/resources/boot/CA/ManageScript.xml create mode 100644 src/main/resources/boot/CA/SchemaFactoryWf.xml create mode 100644 src/main/resources/boot/CA/ScriptFactoryWf.xml create mode 100644 src/main/resources/boot/EA/AssignNewVersionFromLast.xml create mode 100644 src/main/resources/boot/EA/CreateItem.xml create mode 100644 src/main/resources/boot/EA/CreateNewLocalObjectDef.xml create mode 100644 src/main/resources/boot/EA/EditActivityDef.xml create mode 100644 src/main/resources/boot/EA/EditPropertyDescription.xml create mode 100644 src/main/resources/boot/EA/EditSchema.xml create mode 100644 src/main/resources/boot/EA/EditScriptDefinition.xml create mode 100644 src/main/resources/boot/EA/SetInstanceWorkflow.xml create mode 100644 src/main/resources/boot/OD/ChooseWorkflow.xsd create mode 100644 src/main/resources/boot/OD/New.xsd create mode 100644 src/main/resources/boot/OD/NewDevObjectDef.xsd create mode 100644 src/main/resources/boot/OD/NewLocalObjectDef.xsd create mode 100644 src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml create mode 100644 src/main/resources/boot/SC/InstantiateItem.xml create mode 100644 src/main/resources/boot/SC/LocalObjectDefCreator.xml create mode 100644 src/main/resources/boot/SC/New.xml create mode 100644 src/main/resources/boot/SC/SetWorkflow.xml create mode 100644 src/main/resources/boot/property/CAProp.xml create mode 100644 src/main/resources/boot/property/DescProp.xml create mode 100644 src/main/resources/boot/property/EAProp.xml create mode 100644 src/main/resources/boot/property/ODProp.xml create mode 100644 src/main/resources/boot/property/SCProp.xml create mode 100644 src/main/resources/images/typeicons/factory_16.png create mode 100644 src/main/resources/images/typeicons/factory_32.png create mode 100644 src/main/resources/images/typeicons/itemdescription_16.png create mode 100644 src/main/resources/images/typeicons/itemdescription_32.png delete mode 100644 src/module.xml diff --git a/.classpath b/.classpath index fba9c0e..5d389a9 100644 --- a/.classpath +++ b/.classpath @@ -1,7 +1,6 @@ - - - - + + + diff --git a/.project b/.project index ce40b92..d9e6b9b 100644 --- a/.project +++ b/.project @@ -10,8 +10,14 @@ + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature org.eclipse.jdt.core.javanature diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs index dcf8af1..cbb750c 100644 --- a/.settings/org.eclipse.jdt.core.prefs +++ b/.settings/org.eclipse.jdt.core.prefs @@ -1,12 +1,12 @@ -#Wed Sep 14 14:08:10 CEST 2011 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.compliance=1.5 org.eclipse.jdt.core.compiler.debug.lineNumber=generate org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=error org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.6 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/build.xml b/build.xml deleted file mode 100644 index 0b934cb..0000000 --- a/build.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/cristaldev.jar b/cristaldev.jar index d8be001..6a8fd14 100644 Binary files a/cristaldev.jar and b/cristaldev.jar differ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..a12775a --- /dev/null +++ b/pom.xml @@ -0,0 +1,22 @@ + + 4.0.0 + cristal + cristal-dev + 0.2 + Cristal Development Module + + + + src/main + + module.xml + + + + src/main/resources + ac/uk/uwe/cristaldev/resources + + + + \ No newline at end of file diff --git a/resources/boot/CA/CompositeActivityFactory.xml b/resources/boot/CA/CompositeActivityFactory.xml deleted file mode 100644 index 1a963cb..0000000 --- a/resources/boot/CA/CompositeActivityFactory.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - 9 - - - - - - - - - - - 7 - 12 - - - - - - - - - - - 13 - 7 - 9 - - - - - - - - - - - - - 12 - 13 - - - - - - - CreateNewLocalObjectDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CreateNewLocalObjectDef - diff --git a/resources/boot/CA/ElementaryActivityFactory.xml b/resources/boot/CA/ElementaryActivityFactory.xml deleted file mode 100644 index bf14607..0000000 --- a/resources/boot/CA/ElementaryActivityFactory.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - 9 - - - - - - - - - - - 7 - 12 - - - - - - - - - - - 13 - 7 - 9 - - - - - - - - - - - - - 12 - 13 - - - - - - - CreateNewLocalObjectDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CreateNewLocalObjectDef - diff --git a/resources/boot/CA/ItemDescriptionFactoryWf.xml b/resources/boot/CA/ItemDescriptionFactoryWf.xml deleted file mode 100644 index 270c473..0000000 --- a/resources/boot/CA/ItemDescriptionFactoryWf.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - - - - - - - - 7 - - - - - - - - - - - 13 - 6 - 7 - - - - - - - - - - - - - 12 - 13 - - - - - CreateItem - - - - - - - - 6 - 12 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/resources/boot/CA/ItemDescriptionWf.xml b/resources/boot/CA/ItemDescriptionWf.xml deleted file mode 100644 index e8c294f..0000000 --- a/resources/boot/CA/ItemDescriptionWf.xml +++ /dev/null @@ -1 +0,0 @@ -3536CreateItem3629322528311232352728292427301131221030212225SetInstanceWorkflow2124EditPropertyDescription13101112213SetInstanceWorkflow2EditPropertyDescription \ No newline at end of file diff --git a/resources/boot/CA/ManageCompositeActDef.xml b/resources/boot/CA/ManageCompositeActDef.xml deleted file mode 100644 index 9a48f1c..0000000 --- a/resources/boot/CA/ManageCompositeActDef.xml +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - 19 - 20 - 21 - - - - - - - - - - - - - 17 - 20 - 18 - - - - - - - - - - - 16 - 17 - - - - - - - - - - - - 8 - 21 - - - - - - - - - - - 25 - 7 - 8 - - - - - - - - - - - - - 18 - 19 - - - - - - - AssignNewVersionFromLast - - - - - - - - 7 - 16 - 24 - - - - - - - - - - - 24 - 25 - - - - - - - EditActivityDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignNewVersionFromLast - EditActivityDef - diff --git a/resources/boot/CA/ManageElementaryActDef.xml b/resources/boot/CA/ManageElementaryActDef.xml deleted file mode 100644 index 1aa3840..0000000 --- a/resources/boot/CA/ManageElementaryActDef.xml +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - 19 - 20 - 21 - - - - - - - - - - - - - 17 - 20 - 18 - - - - - - - - - - - 8 - 21 - - - - - - - - - - - 16 - 17 - - - - - - - - - - - - 25 - 7 - 8 - - - - - - - - - - - - - 7 - 16 - 24 - - - - - - - - - - - 18 - 19 - - - - - - - AssignNewVersionFromLast - - - - - - - - 24 - 25 - - - - - - - EditActivityDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignNewVersionFromLast - EditActivityDef - diff --git a/resources/boot/CA/ManageSchema.xml b/resources/boot/CA/ManageSchema.xml deleted file mode 100644 index da501e4..0000000 --- a/resources/boot/CA/ManageSchema.xml +++ /dev/null @@ -1,218 +0,0 @@ - - - - - - - - - - 19 - 20 - 21 - - - - - - - - - - - - - 17 - 20 - 18 - - - - - - - - - - - 16 - 17 - - - - - - - - - - - - 8 - 21 - - - - - - - - - - - 6 - 7 - 8 - - - - - - - - - - - - - 18 - 19 - - - - - - - AssignNewVersionFromLast - - - - - - - - 7 - 16 - 5 - - - - - - - - - - - 5 - 6 - - - - - - EditSchema - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - AssignNewVersionFromLast - EditSchema - diff --git a/resources/boot/CA/ManageScript.xml b/resources/boot/CA/ManageScript.xml deleted file mode 100644 index f8100b0..0000000 --- a/resources/boot/CA/ManageScript.xml +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - 24 - 25 - 26 - - - - - - - - - - - - - 21 - 22 - 23 - - - - - - - - - - - - - 18 - 25 - 20 - - - - - - - - - - - 17 - 23 - 19 - - - - - - - - - - - 17 - 18 - - - - - - - - - - - - 19 - 21 - - - - - - EditScriptDefinition - - - - - - - - 20 - 24 - - - - - - - AssignNewVersionFromLast - - - - - - - - 22 - 26 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - EditScriptDefinition - AssignNewVersionFromLast - diff --git a/resources/boot/CA/SchemaFactoryWf.xml b/resources/boot/CA/SchemaFactoryWf.xml deleted file mode 100644 index a6496f3..0000000 --- a/resources/boot/CA/SchemaFactoryWf.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - 9 - - - - - - - - - - - 7 - 12 - - - - - - - - - - - 13 - 7 - 9 - - - - - - - - - - - - - 12 - 13 - - - - - - - CreateNewLocalObjectDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CreateNewLocalObjectDef - diff --git a/resources/boot/CA/ScriptFactoryWf.xml b/resources/boot/CA/ScriptFactoryWf.xml deleted file mode 100644 index 5f51f9d..0000000 --- a/resources/boot/CA/ScriptFactoryWf.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - 9 - - - - - - - - - - - 7 - 12 - - - - - - - - - - - 13 - 7 - 9 - - - - - - - - - - - - - 12 - 13 - - - - - - - CreateNewLocalObjectDef - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - CreateNewLocalObjectDef - diff --git a/resources/boot/EA/AssignNewVersionFromLast.xml b/resources/boot/EA/AssignNewVersionFromLast.xml deleted file mode 100644 index 248dfee..0000000 --- a/resources/boot/EA/AssignNewVersionFromLast.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/CreateItem.xml b/resources/boot/EA/CreateItem.xml deleted file mode 100644 index d54cd4d..0000000 --- a/resources/boot/EA/CreateItem.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/CreateNewLocalObjectDef.xml b/resources/boot/EA/CreateNewLocalObjectDef.xml deleted file mode 100644 index 840c32d..0000000 --- a/resources/boot/EA/CreateNewLocalObjectDef.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/EditActivityDef.xml b/resources/boot/EA/EditActivityDef.xml deleted file mode 100644 index e90c225..0000000 --- a/resources/boot/EA/EditActivityDef.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/EditPropertyDescription.xml b/resources/boot/EA/EditPropertyDescription.xml deleted file mode 100644 index 2cbf763..0000000 --- a/resources/boot/EA/EditPropertyDescription.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/EditSchema.xml b/resources/boot/EA/EditSchema.xml deleted file mode 100644 index 3b01fdc..0000000 --- a/resources/boot/EA/EditSchema.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/EditScriptDefinition.xml b/resources/boot/EA/EditScriptDefinition.xml deleted file mode 100644 index 11c14ec..0000000 --- a/resources/boot/EA/EditScriptDefinition.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/EA/SetInstanceWorkflow.xml b/resources/boot/EA/SetInstanceWorkflow.xml deleted file mode 100644 index a9e7d7b..0000000 --- a/resources/boot/EA/SetInstanceWorkflow.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/resources/boot/OD/ChooseWorkflow.xsd b/resources/boot/OD/ChooseWorkflow.xsd deleted file mode 100644 index 9927231..0000000 --- a/resources/boot/OD/ChooseWorkflow.xsd +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - Give the name of the composite activity description that you would like new instance of this description to run. - - - - - - diff --git a/resources/boot/OD/New.xsd b/resources/boot/OD/New.xsd deleted file mode 100644 index 91755c8..0000000 --- a/resources/boot/OD/New.xsd +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/resources/boot/OD/NewDevObjectDef.xsd b/resources/boot/OD/NewDevObjectDef.xsd deleted file mode 100644 index 637581e..0000000 --- a/resources/boot/OD/NewDevObjectDef.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - Please give a name for your new object. - - - - - If you want to store your object in a subfolder, give the subpath here. - - - - - - diff --git a/resources/boot/OD/NewLocalObjectDef.xsd b/resources/boot/OD/NewLocalObjectDef.xsd deleted file mode 100644 index 0186872..0000000 --- a/resources/boot/OD/NewLocalObjectDef.xsd +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - Please give a name for your new object. - - - - - If you want to store your object in a subfolder, give the subpath here. - - - - - - diff --git a/resources/boot/SC/CreateNewNumberedVersionFromLast.xml b/resources/boot/SC/CreateNewNumberedVersionFromLast.xml deleted file mode 100644 index 321855a..0000000 --- a/resources/boot/SC/CreateNewNumberedVersionFromLast.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - diff --git a/resources/boot/SC/InstantiateItem.xml b/resources/boot/SC/InstantiateItem.xml deleted file mode 100644 index 4e80e9d..0000000 --- a/resources/boot/SC/InstantiateItem.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - diff --git a/resources/boot/SC/LocalObjectDefCreator.xml b/resources/boot/SC/LocalObjectDefCreator.xml deleted file mode 100644 index 32b154c..0000000 --- a/resources/boot/SC/LocalObjectDefCreator.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - diff --git a/resources/boot/SC/New.xml b/resources/boot/SC/New.xml deleted file mode 100644 index a07a7b9..0000000 --- a/resources/boot/SC/New.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/resources/boot/SC/SetWorkflow.xml b/resources/boot/SC/SetWorkflow.xml deleted file mode 100644 index 88a061f..0000000 --- a/resources/boot/SC/SetWorkflow.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - diff --git a/resources/boot/property/CAProp.xml b/resources/boot/property/CAProp.xml deleted file mode 100644 index d5b2bea..0000000 --- a/resources/boot/property/CAProp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/resources/boot/property/DescProp.xml b/resources/boot/property/DescProp.xml deleted file mode 100644 index 95a41c9..0000000 --- a/resources/boot/property/DescProp.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/resources/boot/property/EAProp.xml b/resources/boot/property/EAProp.xml deleted file mode 100644 index ddf07c1..0000000 --- a/resources/boot/property/EAProp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/resources/boot/property/ODProp.xml b/resources/boot/property/ODProp.xml deleted file mode 100644 index 0c85444..0000000 --- a/resources/boot/property/ODProp.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/resources/boot/property/SCProp.xml b/resources/boot/property/SCProp.xml deleted file mode 100644 index 356f2f9..0000000 --- a/resources/boot/property/SCProp.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/resources/images/typeicons/factory_16.png b/resources/images/typeicons/factory_16.png deleted file mode 100644 index 9979ee7..0000000 Binary files a/resources/images/typeicons/factory_16.png and /dev/null differ diff --git a/resources/images/typeicons/factory_32.png b/resources/images/typeicons/factory_32.png deleted file mode 100644 index f43f44f..0000000 Binary files a/resources/images/typeicons/factory_32.png and /dev/null differ diff --git a/resources/images/typeicons/itemdescription_16.png b/resources/images/typeicons/itemdescription_16.png deleted file mode 100644 index 7c80fd6..0000000 Binary files a/resources/images/typeicons/itemdescription_16.png and /dev/null differ diff --git a/resources/images/typeicons/itemdescription_32.png b/resources/images/typeicons/itemdescription_32.png deleted file mode 100644 index d0afc4d..0000000 Binary files a/resources/images/typeicons/itemdescription_32.png and /dev/null differ diff --git a/src/main/module.xml b/src/main/module.xml new file mode 100644 index 0000000..7667b0e --- /dev/null +++ b/src/main/module.xml @@ -0,0 +1,82 @@ + + + + CRISTAL Development Items, such as resource factories and workflows. Also includes a demonstrative description factory + 0.2 + + ac/uk/uwe/cristaldev/resources/ + + boot/OD/NewLocalObjectDef.xsd + boot/OD/NewDevObjectDef.xsd + boot/OD/ChooseWorkflow.xsd + boot/EA/AssignNewVersionFromLast.xml + boot/EA/CreateNewLocalObjectDef.xml + boot/EA/EditActivityDef.xml + boot/EA/EditPropertyDescription.xml + boot/EA/EditSchema.xml + boot/EA/EditScriptDefinition.xml + boot/EA/CreateItem.xml + boot/EA/SetInstanceWorkflow.xml + boot/CA/CompositeActivityFactory.xml + boot/CA/ElementaryActivityFactory.xml + boot/CA/ManageCompositeActDef.xml + boot/CA/ManageElementaryActDef.xml + boot/CA/ManageSchema.xml + boot/CA/ManageScript.xml + boot/CA/SchemaFactoryWf.xml + boot/CA/ScriptFactoryWf.xml + boot/CA/ItemDescriptionWf.xml + boot/CA/ItemDescriptionFactoryWf.xml + boot/SC/CreateNewNumberedVersionFromLast.xml + boot/SC/LocalObjectDefCreator.xml + boot/SC/InstantiateItem.xml + boot/SC/SetWorkflow.xml + + Script + Factory + boot/property/SCProp.xml + boot/SC/New.xml + + /desc/ActivityDesc/system/dev/ManageScript + + + + ElementaryActivityDef + Factory + boot/property/EAProp.xml + + /desc/ActivityDesc/system/dev/ManageElementaryActDef + + + + CompositeActivityDef + Factory + boot/property/CAProp.xml + + /desc/ActivityDesc/system/dev/ManageCompositeActDef + + + + Schema + Factory + boot/property/ODProp.xml + boot/OD/New.xsd + + /desc/ActivityDesc/system/dev/ManageSchema + + + + Factory + boot/property/DescProp.xml + + /desc/ActivityDesc/system/dev/ItemDescriptionWf + + + /desc/dev/CompositeActivityDefFactory + + + + Admin + + + diff --git a/src/main/resources/boot/CA/CompositeActivityFactory.xml b/src/main/resources/boot/CA/CompositeActivityFactory.xml new file mode 100644 index 0000000..1a963cb --- /dev/null +++ b/src/main/resources/boot/CA/CompositeActivityFactory.xml @@ -0,0 +1,108 @@ + + + + + + + + + + 9 + + + + + + + + + + + 7 + 12 + + + + + + + + + + + 13 + 7 + 9 + + + + + + + + + + + + + 12 + 13 + + + + + + + CreateNewLocalObjectDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CreateNewLocalObjectDef + diff --git a/src/main/resources/boot/CA/ElementaryActivityFactory.xml b/src/main/resources/boot/CA/ElementaryActivityFactory.xml new file mode 100644 index 0000000..bf14607 --- /dev/null +++ b/src/main/resources/boot/CA/ElementaryActivityFactory.xml @@ -0,0 +1,108 @@ + + + + + + + + + + 9 + + + + + + + + + + + 7 + 12 + + + + + + + + + + + 13 + 7 + 9 + + + + + + + + + + + + + 12 + 13 + + + + + + + CreateNewLocalObjectDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CreateNewLocalObjectDef + diff --git a/src/main/resources/boot/CA/ItemDescriptionFactoryWf.xml b/src/main/resources/boot/CA/ItemDescriptionFactoryWf.xml new file mode 100644 index 0000000..270c473 --- /dev/null +++ b/src/main/resources/boot/CA/ItemDescriptionFactoryWf.xml @@ -0,0 +1,107 @@ + + + + + + + + + + 7 + + + + + + + + + + + 13 + 6 + 7 + + + + + + + + + + + + + 12 + 13 + + + + + CreateItem + + + + + + + + 6 + 12 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/boot/CA/ItemDescriptionWf.xml b/src/main/resources/boot/CA/ItemDescriptionWf.xml new file mode 100644 index 0000000..e8c294f --- /dev/null +++ b/src/main/resources/boot/CA/ItemDescriptionWf.xml @@ -0,0 +1 @@ +3536CreateItem3629322528311232352728292427301131221030212225SetInstanceWorkflow2124EditPropertyDescription13101112213SetInstanceWorkflow2EditPropertyDescription \ No newline at end of file diff --git a/src/main/resources/boot/CA/ManageCompositeActDef.xml b/src/main/resources/boot/CA/ManageCompositeActDef.xml new file mode 100644 index 0000000..9a48f1c --- /dev/null +++ b/src/main/resources/boot/CA/ManageCompositeActDef.xml @@ -0,0 +1,219 @@ + + + + + + + + + + 19 + 20 + 21 + + + + + + + + + + + + + 17 + 20 + 18 + + + + + + + + + + + 16 + 17 + + + + + + + + + + + + 8 + 21 + + + + + + + + + + + 25 + 7 + 8 + + + + + + + + + + + + + 18 + 19 + + + + + + + AssignNewVersionFromLast + + + + + + + + 7 + 16 + 24 + + + + + + + + + + + 24 + 25 + + + + + + + EditActivityDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AssignNewVersionFromLast + EditActivityDef + diff --git a/src/main/resources/boot/CA/ManageElementaryActDef.xml b/src/main/resources/boot/CA/ManageElementaryActDef.xml new file mode 100644 index 0000000..1aa3840 --- /dev/null +++ b/src/main/resources/boot/CA/ManageElementaryActDef.xml @@ -0,0 +1,219 @@ + + + + + + + + + + 19 + 20 + 21 + + + + + + + + + + + + + 17 + 20 + 18 + + + + + + + + + + + 8 + 21 + + + + + + + + + + + 16 + 17 + + + + + + + + + + + + 25 + 7 + 8 + + + + + + + + + + + + + 7 + 16 + 24 + + + + + + + + + + + 18 + 19 + + + + + + + AssignNewVersionFromLast + + + + + + + + 24 + 25 + + + + + + + EditActivityDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AssignNewVersionFromLast + EditActivityDef + diff --git a/src/main/resources/boot/CA/ManageSchema.xml b/src/main/resources/boot/CA/ManageSchema.xml new file mode 100644 index 0000000..da501e4 --- /dev/null +++ b/src/main/resources/boot/CA/ManageSchema.xml @@ -0,0 +1,218 @@ + + + + + + + + + + 19 + 20 + 21 + + + + + + + + + + + + + 17 + 20 + 18 + + + + + + + + + + + 16 + 17 + + + + + + + + + + + + 8 + 21 + + + + + + + + + + + 6 + 7 + 8 + + + + + + + + + + + + + 18 + 19 + + + + + + + AssignNewVersionFromLast + + + + + + + + 7 + 16 + 5 + + + + + + + + + + + 5 + 6 + + + + + + EditSchema + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AssignNewVersionFromLast + EditSchema + diff --git a/src/main/resources/boot/CA/ManageScript.xml b/src/main/resources/boot/CA/ManageScript.xml new file mode 100644 index 0000000..f8100b0 --- /dev/null +++ b/src/main/resources/boot/CA/ManageScript.xml @@ -0,0 +1,219 @@ + + + + + + + + + + 24 + 25 + 26 + + + + + + + + + + + + + 21 + 22 + 23 + + + + + + + + + + + + + 18 + 25 + 20 + + + + + + + + + + + 17 + 23 + 19 + + + + + + + + + + + 17 + 18 + + + + + + + + + + + + 19 + 21 + + + + + + EditScriptDefinition + + + + + + + + 20 + 24 + + + + + + + AssignNewVersionFromLast + + + + + + + + 22 + 26 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + EditScriptDefinition + AssignNewVersionFromLast + diff --git a/src/main/resources/boot/CA/SchemaFactoryWf.xml b/src/main/resources/boot/CA/SchemaFactoryWf.xml new file mode 100644 index 0000000..a6496f3 --- /dev/null +++ b/src/main/resources/boot/CA/SchemaFactoryWf.xml @@ -0,0 +1,108 @@ + + + + + + + + + + 9 + + + + + + + + + + + 7 + 12 + + + + + + + + + + + 13 + 7 + 9 + + + + + + + + + + + + + 12 + 13 + + + + + + + CreateNewLocalObjectDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CreateNewLocalObjectDef + diff --git a/src/main/resources/boot/CA/ScriptFactoryWf.xml b/src/main/resources/boot/CA/ScriptFactoryWf.xml new file mode 100644 index 0000000..5f51f9d --- /dev/null +++ b/src/main/resources/boot/CA/ScriptFactoryWf.xml @@ -0,0 +1,108 @@ + + + + + + + + + + 9 + + + + + + + + + + + 7 + 12 + + + + + + + + + + + 13 + 7 + 9 + + + + + + + + + + + + + 12 + 13 + + + + + + + CreateNewLocalObjectDef + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CreateNewLocalObjectDef + diff --git a/src/main/resources/boot/EA/AssignNewVersionFromLast.xml b/src/main/resources/boot/EA/AssignNewVersionFromLast.xml new file mode 100644 index 0000000..248dfee --- /dev/null +++ b/src/main/resources/boot/EA/AssignNewVersionFromLast.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/CreateItem.xml b/src/main/resources/boot/EA/CreateItem.xml new file mode 100644 index 0000000..d54cd4d --- /dev/null +++ b/src/main/resources/boot/EA/CreateItem.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/CreateNewLocalObjectDef.xml b/src/main/resources/boot/EA/CreateNewLocalObjectDef.xml new file mode 100644 index 0000000..840c32d --- /dev/null +++ b/src/main/resources/boot/EA/CreateNewLocalObjectDef.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/EditActivityDef.xml b/src/main/resources/boot/EA/EditActivityDef.xml new file mode 100644 index 0000000..e90c225 --- /dev/null +++ b/src/main/resources/boot/EA/EditActivityDef.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/EditPropertyDescription.xml b/src/main/resources/boot/EA/EditPropertyDescription.xml new file mode 100644 index 0000000..2cbf763 --- /dev/null +++ b/src/main/resources/boot/EA/EditPropertyDescription.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/EditSchema.xml b/src/main/resources/boot/EA/EditSchema.xml new file mode 100644 index 0000000..3b01fdc --- /dev/null +++ b/src/main/resources/boot/EA/EditSchema.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/EditScriptDefinition.xml b/src/main/resources/boot/EA/EditScriptDefinition.xml new file mode 100644 index 0000000..11c14ec --- /dev/null +++ b/src/main/resources/boot/EA/EditScriptDefinition.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/EA/SetInstanceWorkflow.xml b/src/main/resources/boot/EA/SetInstanceWorkflow.xml new file mode 100644 index 0000000..a9e7d7b --- /dev/null +++ b/src/main/resources/boot/EA/SetInstanceWorkflow.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/boot/OD/ChooseWorkflow.xsd b/src/main/resources/boot/OD/ChooseWorkflow.xsd new file mode 100644 index 0000000..9927231 --- /dev/null +++ b/src/main/resources/boot/OD/ChooseWorkflow.xsd @@ -0,0 +1,14 @@ + + + + + + + + Give the name of the composite activity description that you would like new instance of this description to run. + + + + + + diff --git a/src/main/resources/boot/OD/New.xsd b/src/main/resources/boot/OD/New.xsd new file mode 100644 index 0000000..91755c8 --- /dev/null +++ b/src/main/resources/boot/OD/New.xsd @@ -0,0 +1,3 @@ + + + diff --git a/src/main/resources/boot/OD/NewDevObjectDef.xsd b/src/main/resources/boot/OD/NewDevObjectDef.xsd new file mode 100644 index 0000000..637581e --- /dev/null +++ b/src/main/resources/boot/OD/NewDevObjectDef.xsd @@ -0,0 +1,20 @@ + + + + + + + + + Please give a name for your new object. + + + + + If you want to store your object in a subfolder, give the subpath here. + + + + + + diff --git a/src/main/resources/boot/OD/NewLocalObjectDef.xsd b/src/main/resources/boot/OD/NewLocalObjectDef.xsd new file mode 100644 index 0000000..0186872 --- /dev/null +++ b/src/main/resources/boot/OD/NewLocalObjectDef.xsd @@ -0,0 +1,20 @@ + + + + + + + + + Please give a name for your new object. + + + + + If you want to store your object in a subfolder, give the subpath here. + + + + + + diff --git a/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml b/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml new file mode 100644 index 0000000..321855a --- /dev/null +++ b/src/main/resources/boot/SC/CreateNewNumberedVersionFromLast.xml @@ -0,0 +1,27 @@ + + + + + diff --git a/src/main/resources/boot/SC/InstantiateItem.xml b/src/main/resources/boot/SC/InstantiateItem.xml new file mode 100644 index 0000000..4e80e9d --- /dev/null +++ b/src/main/resources/boot/SC/InstantiateItem.xml @@ -0,0 +1,28 @@ + + + + + diff --git a/src/main/resources/boot/SC/LocalObjectDefCreator.xml b/src/main/resources/boot/SC/LocalObjectDefCreator.xml new file mode 100644 index 0000000..32b154c --- /dev/null +++ b/src/main/resources/boot/SC/LocalObjectDefCreator.xml @@ -0,0 +1,54 @@ + + + + + diff --git a/src/main/resources/boot/SC/New.xml b/src/main/resources/boot/SC/New.xml new file mode 100644 index 0000000..a07a7b9 --- /dev/null +++ b/src/main/resources/boot/SC/New.xml @@ -0,0 +1,7 @@ + + + + + diff --git a/src/main/resources/boot/SC/SetWorkflow.xml b/src/main/resources/boot/SC/SetWorkflow.xml new file mode 100644 index 0000000..88a061f --- /dev/null +++ b/src/main/resources/boot/SC/SetWorkflow.xml @@ -0,0 +1,41 @@ + + + + + diff --git a/src/main/resources/boot/property/CAProp.xml b/src/main/resources/boot/property/CAProp.xml new file mode 100644 index 0000000..d5b2bea --- /dev/null +++ b/src/main/resources/boot/property/CAProp.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/boot/property/DescProp.xml b/src/main/resources/boot/property/DescProp.xml new file mode 100644 index 0000000..95a41c9 --- /dev/null +++ b/src/main/resources/boot/property/DescProp.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/main/resources/boot/property/EAProp.xml b/src/main/resources/boot/property/EAProp.xml new file mode 100644 index 0000000..ddf07c1 --- /dev/null +++ b/src/main/resources/boot/property/EAProp.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/boot/property/ODProp.xml b/src/main/resources/boot/property/ODProp.xml new file mode 100644 index 0000000..0c85444 --- /dev/null +++ b/src/main/resources/boot/property/ODProp.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/boot/property/SCProp.xml b/src/main/resources/boot/property/SCProp.xml new file mode 100644 index 0000000..356f2f9 --- /dev/null +++ b/src/main/resources/boot/property/SCProp.xml @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/images/typeicons/factory_16.png b/src/main/resources/images/typeicons/factory_16.png new file mode 100644 index 0000000..9979ee7 Binary files /dev/null and b/src/main/resources/images/typeicons/factory_16.png differ diff --git a/src/main/resources/images/typeicons/factory_32.png b/src/main/resources/images/typeicons/factory_32.png new file mode 100644 index 0000000..f43f44f Binary files /dev/null and b/src/main/resources/images/typeicons/factory_32.png differ diff --git a/src/main/resources/images/typeicons/itemdescription_16.png b/src/main/resources/images/typeicons/itemdescription_16.png new file mode 100644 index 0000000..7c80fd6 Binary files /dev/null and b/src/main/resources/images/typeicons/itemdescription_16.png differ diff --git a/src/main/resources/images/typeicons/itemdescription_32.png b/src/main/resources/images/typeicons/itemdescription_32.png new file mode 100644 index 0000000..d0afc4d Binary files /dev/null and b/src/main/resources/images/typeicons/itemdescription_32.png differ diff --git a/src/module.xml b/src/module.xml deleted file mode 100644 index 83bc461..0000000 --- a/src/module.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - CRISTAL Development Items, such as resource factories and workflows. Also includes a demonstrative description factory - 0.2 - - ch/cern/cristaldev/resources/ - - boot/OD/NewLocalObjectDef.xsd - boot/OD/NewDevObjectDef.xsd - boot/OD/ChooseWorkflow.xsd - boot/EA/AssignNewVersionFromLast.xml - boot/EA/CreateNewLocalObjectDef.xml - boot/EA/EditActivityDef.xml - boot/EA/EditPropertyDescription.xml - boot/EA/EditSchema.xml - boot/EA/EditScriptDefinition.xml - boot/EA/CreateItem.xml - boot/EA/SetInstanceWorkflow.xml - boot/CA/CompositeActivityFactory.xml - boot/CA/ElementaryActivityFactory.xml - boot/CA/ManageCompositeActDef.xml - boot/CA/ManageElementaryActDef.xml - boot/CA/ManageSchema.xml - boot/CA/ManageScript.xml - boot/CA/SchemaFactoryWf.xml - boot/CA/ScriptFactoryWf.xml - boot/CA/ItemDescriptionWf.xml - boot/CA/ItemDescriptionFactoryWf.xml - boot/SC/CreateNewNumberedVersionFromLast.xml - boot/SC/LocalObjectDefCreator.xml - boot/SC/InstantiateItem.xml - boot/SC/SetWorkflow.xml - - Script - Factory - boot/property/SCProp.xml - boot/SC/New.xml - - /desc/ActivityDesc/system/dev/ManageScript - - - - ElementaryActivityDef - Factory - boot/property/EAProp.xml - - /desc/ActivityDesc/system/dev/ManageElementaryActDef - - - - CompositeActivityDef - Factory - boot/property/CAProp.xml - - /desc/ActivityDesc/system/dev/ManageCompositeActDef - - - - Schema - Factory - boot/property/ODProp.xml - boot/OD/New.xsd - - /desc/ActivityDesc/system/dev/ManageSchema - - - - Factory - boot/property/DescProp.xml - - /desc/ActivityDesc/system/dev/ItemDescriptionWf - - - /desc/dev/CompositeActivityDefFactory - - - - Admin - - - -- cgit v1.2.3