Changing attribute access

2009-08-18 Thread Yuri Shtil
Hi, Is there a way to change access to a lazy attribute to read-only once the value has been set in the builder? -- Yuri

Re: Changing attribute access

2009-08-18 Thread Hans Dieter Pearcey
Excerpts from Yuri Shtil's message of Tue Aug 18 09:07:27 -0700 2009: Is there a way to change access to a lazy attribute to read-only once the value has been set in the builder? No, that would be horrible. Just set it to readonly in the first place; that won't stop a default or builder from

Re: Changing attribute access

2009-08-18 Thread Yuri Shtil
Chris Prather wrote: On Tue, Aug 18, 2009 at 12:07 PM, Yuri Shtilyu...@juniper.net wrote: Hi, Is there a way to change access to a lazy attribute to read-only once the value has been set in the builder? This question doesn't exactly make sense. Builder / Default have nothing to do

Re: Changing attribute access

2009-08-18 Thread Hans Dieter Pearcey
Excerpts from Yuri Shtil's message of Tue Aug 18 12:15:03 -0700 2009: Actually I realized I made a mistake in my question. I want to be able to make an attribute read only after changing it in certain places of my code. The reason is that I want to control access similar to private in C++;