X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.webapp%2Fsrc%2Fmain%2Fwebapp%2Fargeo-ria-src%2Fclass%2Forg%2Fargeo%2Fria%2Fevent%2FReloadEvent.js;fp=org.argeo.slc.webapp%2Fsrc%2Fmain%2Fwebapp%2Fargeo-ria-src%2Fclass%2Forg%2Fargeo%2Fria%2Fevent%2FReloadEvent.js;h=0000000000000000000000000000000000000000;hb=9e3b34f5cfbf0551d804a1ea7e5d793707293d35;hp=2877a733523b11f3b66046fda56586ffcffb2c9c;hpb=3e24f32c95b5ac3ec7fcae7000c4a8cfb857d514;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-src/class/org/argeo/ria/event/ReloadEvent.js b/org.argeo.slc.webapp/src/main/webapp/argeo-ria-src/class/org/argeo/ria/event/ReloadEvent.js deleted file mode 100644 index 2877a7335..000000000 --- a/org.argeo.slc.webapp/src/main/webapp/argeo-ria-src/class/org/argeo/ria/event/ReloadEvent.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * This can be triggered at the end of a IO Request. In that case, it contains - * a data type as an identifier, and the request response itself. - * Can be used this way to listen for data changes from various parts of the application. - */ -qx.Class.define("org.argeo.ria.event.ReloadEvent", -{ - extend : qx.event.type.Event, - - construct : function(){ - this.base(arguments); - }, - members : { - /** - * Basic initialisation of event - * @param dataType {String} a unique data identifier - * @param content {mixed} the retrieved data - */ - init: function(dataType, content){ - this.setDataType(dataType); - this.setContent(content); - } - }, - properties :{ - /** - * A unique data identifier - */ - dataType : {init:null, check:"String"}, - /** - * The new data content - */ - content : {init:null} - } -}); \ No newline at end of file