Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 13291 invoked from network); 17 Nov 2002 22:47:33 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 17 Nov 2002 22:47:33 -0000 Received: (qmail 8159 invoked by uid 97); 17 Nov 2002 22:48:36 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@jakarta.apache.org Received: (qmail 8087 invoked by uid 97); 17 Nov 2002 22:48:34 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 8057 invoked by uid 98); 17 Nov 2002 22:48:33 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Message-ID: <009c01c28e8b$8d5436a0$ee7520d9@oemcomputer> From: "Stephen Colebourne" To: "Jakarta Commons Developers List" References: <014201c28733$dc653fa0$0200a8c0@GATEWAY> Subject: Re: [clazz] draft reflect implementation Date: Sun, 17 Nov 2002 22:49:13 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I've finally had a chance to take a look at this. Its great work ;-) Some questions: - will it handle the case of defining int getAge() void setAge(String age) void setAge(int age) - Can we handle related accessors, eg. int getAge() int getAgeAsString() void setAge(int age) void setAgeAsString(String age) - Should ClazzProperty objects expose their read/write methods etc via ClazzOperation/Operation objects? - How do you actually do the plugin? I can see where to override, but I can't see where to make the override happen. One thing we do have to be careful of is not to make it too complicated. I'm never sure exactly where that boundary is, and documentation always helps. I also like lots of small packages, would reflect.list, reflect.map and reflect.scalar help? Stephen ----- Original Message ----- From: "Dmitri Plotnikov" > I am not really done with the first draft yet, but since I will have to > take about a week off from clazz, I wanted to commit what > I have done so far and give you a chance to look it over. > > My initial focus was on implementing functionality equivalent to > that of java.beans.Introspector. There are several pretty cool > improvements over the Introspector: > > 1. Highly customizable design. > > - You can add new ClazzLibraries for new kinds of Clazzes. So far > there is only one such library, ReflectClazzLibrary, but more are > coming. > > - You can add new ClazzLoaders to customize Clazz generation for > individual clazzes or groups of clazzes. > > - In the case of Reflected clazzes, you can change the way accessor > methods are bound to properties. For example, if you want to make > read methods look like "readFoo()" instead of "getFoo()", it is a matter > of overriding one method on ReflectScalarPropertyIntrospector. > > - In the case of Reflected clazzes, you can add new categories of > properties. The default list of categories consists of List (which > works for Lists as well as arrays), Mapped and Scalar properties. > > 2. In the case of ReflectedClazzes, richer mapping of accessors to > properties: methods like getFoo(int), setBar(key,value), getFooKeySet() > etc are recognized. > > 3. If a property is Mapped, the corresponding clazzProperty.get() > returns a Map, even if all the bean defines is a bunch of accessor > methods like getFoo(key). The Map implementation returned by > clazzProperty will invoke those accessors if they exist (see the > ReflectedMap). > > 4. Similarly, if a property is a List or an array, the corresponding > value is a List (see ReflectedList). > > 5. Powerful diagnostic facility that optionally prints details of > introspection. You won't have to wonder any more: "how come it does > not see my property 'foo'". I have attached a sample diagnostic log. > Check it out, it's pretty cool. > > The implemented functionality comes with tests, but as you will see not > all functionality is implemented yet. > > Don't look for ATTRIBUTES, DELEGATORS or BEAN stuff yet - I'll get to > that in a week or so. > > > - Dmitri > > ---------------------------------------------------------------------------- ---- > -- > To unsubscribe, e-mail: > For additional commands, e-mail: -- To unsubscribe, e-mail: For additional commands, e-mail: