On 12/23/2011 06:00 PM, Derrell Lipman wrote: > On Fri, Dec 23, 2011 at 11:57, Simon White > <[email protected] > <mailto:[email protected]>> wrote: > > Hi > > Thank-you that works fine. I was assuming that accessing properties > directly was not the correct way to handle this so I was looking for a > getter. > > I could not find any mention of this is the manual or did I just > miss it? > > > I'm not aware of any property that contains that value. Don't know > about the manual. 'classname' is a public member variable of every > class, not protected nor private, and is used in many places. I'd be > *really* surprised if that ever went away. > > Derrell
The api viewer for qx.Class mentions the classname property [1]. As Derell said, it's a public member, and therefore ok to use. The properties that you should stay away from are prefixed with $$. Those are qooxdoo internals. And of course, only touch the _ and __ (private and protected) members where normal OO rules allow it. But that goes without saying. :) [1] http://demo.qooxdoo.org/current/apiviewer/#qx.Class Regards, Marc ------------------------------------------------------------------------------ Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to sell to consumers worldwide. Explore the Intel AppUpSM program developer opportunity. appdeveloper.intel.com/join http://p.sf.net/sfu/intel-appdev _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
