> Hey,
> could you guys give me some feedback why you want to use it?
> Regards,
> Martin

I can't find exactly any example, but I remember that I once wanted a kind of
'readOnly' property.
If I remember correct, this was done by overwriting the setter method in the
derived class.
Something like:

<code>
  qx.Class.define("Vehicle",
  {
    properties :
    {
      used : { check : "Boolean", init : true }
    }
  });

  qx.Class.define("Beetle",
  {
    extend : "Vehicle",
    members :
    {
      // make 'used' readOnly
      setUsed : function (value) {/*throw something*/ }
    }
  });
</code>

This was just coming out of my mind, and should not be take too seriously ;)

And as I said, I currently can't find anything like this in my current work!

Regards,
  Peter

***********************************************
Achtung, wir sind umgezogen!
Unsere neue Adresse:
TIS GmbH
Müller-Armack-Str. 8
46397 Bocholt
***********************************************

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to