X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=server%2Forg.argeo.slc.ria%2Fsrc%2Fargeo-ria-lib%2Fslc%2Fclass%2Forg%2Fargeo%2Fslc%2Fria%2Fexecution%2FValue.js;fp=server%2Forg.argeo.slc.ria%2Fsrc%2Fargeo-ria-lib%2Fslc%2Fclass%2Forg%2Fargeo%2Fslc%2Fria%2Fexecution%2FValue.js;h=0000000000000000000000000000000000000000;hb=f5619266b1acabf1cc375487818c3d6a6e0614dc;hp=34152e58e434142098d57653e66e1657d5e974d3;hpb=1973d521367cdfe1d467da2bb8a539284996bcf6;p=gpl%2Fargeo-slc.git diff --git a/server/org.argeo.slc.ria/src/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js b/server/org.argeo.slc.ria/src/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js deleted file mode 100644 index 34152e58e..000000000 --- a/server/org.argeo.slc.ria/src/argeo-ria-lib/slc/class/org/argeo/slc/ria/execution/Value.js +++ /dev/null @@ -1,123 +0,0 @@ -/** - * Wrapper for SlcValue object - */ -qx.Class.define("org.argeo.slc.ria.execution.Value", { - - extend : qx.core.Object, - - properties : { - /** - * Name of this Execution Flow - */ - key : { - check : "String", - init : "" - }, - /** - * The type of this value, for the moment "primitive" and "ref" are supported - */ - specType : { - check : "String", - init : "" - }, - /** - * Subtype, depending on the "type". - */ - specSubType : { - check : "String" - }, - /** - * Whether it is a parameter or not - */ - parameter : { - check : "Boolean" - }, - /** - * Whether it is frozen on the server, i.e. disabled in the form - */ - frozen : { - check : "Boolean" - }, - /** - * Should not be editable nor seeable, thus hidden - */ - hidden : { - check : "Boolean" - }, - /** - * The real value - */ - value : { - nullable : true - }, - /** - * Castor representation of the object - */ - xmlSpecNode : { - apply : "_applyXmlSpecNode" - }, - refList : { - check : "Array" - } - }, - - statics : { - XPATH_KEY : "@key" - }, - - construct : function(){ - this.base(arguments); - }, - - members : { - /** - * Init the object from an XML representation - * @param xmlNode {Node} Castor representation of this object - */ - _applyXmlSpecNode : function(xmlNode){ - this.setKey(org.argeo.ria.util.Element.getSingleNodeText(xmlNode, "@key")); - var childs = xmlNode.childNodes; - for(var i=0;i