From f3b5fa3d8f79c21748ddc88e8ad5062f4a413369 Mon Sep 17 00:00:00 2001 From: Charles du Jeu Date: Fri, 27 Feb 2009 13:58:18 +0000 Subject: [PATCH] Rename classes git-svn-id: https://svn.argeo.org/slc/trunk@2197 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc --- .../slc/class/org/argeo/slc/ria/execution/Flow.js | 4 ++-- .../slc/class/org/argeo/slc/ria/execution/Module.js | 10 +++++----- .../slc/class/org/argeo/slc/ria/execution/Spec.js | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Flow.js b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Flow.js index 4728fe955..ed23ff04a 100644 --- a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Flow.js +++ b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Flow.js @@ -1,7 +1,7 @@ /** * Wrapper for ExecutionFlow server object */ -qx.Class.define("org.argeo.slc.ria.module.ExecutionFlow", { +qx.Class.define("org.argeo.slc.ria.execution.Flow", { extend : qx.core.Object, @@ -23,7 +23,7 @@ qx.Class.define("org.argeo.slc.ria.module.ExecutionFlow", { * Reference the actual ExecutionSpec object */ executionSpec : { - check : "org.argeo.slc.ria.module.ExecutionSpec" + check : "org.argeo.slc.ria.execution.Spec" }, /** * Castor representation of the object diff --git a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Module.js b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Module.js index bd5c4c815..8e69c92b2 100644 --- a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Module.js +++ b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Module.js @@ -1,7 +1,7 @@ /** * Wrapper for ExecutionModule server object */ -qx.Class.define("org.argeo.slc.ria.module.ExecutionModule", { +qx.Class.define("org.argeo.slc.ria.execution.Module", { extend : qx.core.Object, @@ -54,7 +54,7 @@ qx.Class.define("org.argeo.slc.ria.module.ExecutionModule", { members : { /** * Add an execution flow to this module - * @param executionFlow {org.argeo.slc.ria.module.ExecutionFlow} + * @param executionFlow {org.argeo.slc.ria.execution.Flow} */ addExecutionFlow : function(executionFlow){ var spec = this.getExecutionSpecByName(executionFlow.getExecutionSpecName()); @@ -68,7 +68,7 @@ qx.Class.define("org.argeo.slc.ria.module.ExecutionModule", { /** * Add an execution Spec to this module - * @param executionSpec {org.argeo.slc.ria.module.ExecutionSpec} + * @param executionSpec {org.argeo.slc.ria.execution.Spec} */ addExecutionSpec : function(executionSpec){ this.getExecutionSpecs()[executionSpec.getName()] = executionSpec; @@ -93,14 +93,14 @@ qx.Class.define("org.argeo.slc.ria.module.ExecutionModule", { // Parse Specs first var specs = org.argeo.ria.util.Element.selectNodes(xmlNode, this.self(arguments).XPATH_EXECUTION_SPECS); for(i=0; i< specs.length;i++){ - var execSpec = new org.argeo.slc.ria.module.ExecutionSpec(); + var execSpec = new org.argeo.slc.ria.execution.Spec(); execSpec.setXmlNode(specs[i]); this.addExecutionSpec(execSpec); } // Now parse Flows : to do AFTER specs var flows = org.argeo.ria.util.Element.selectNodes(xmlNode, this.self(arguments).XPATH_EXECUTION_FLOWS); for(var i=0;i