Re: [PATCH] jasper - enum support for tag libs

2007-09-15 Thread Remy Maucherat
David Blevins wrote: On Sep 14, 2007, at 10:34 AM, Filip Hanik - Dev Lists wrote: - adding methods or altering the signature of the javax. APIs is clearly illegal yes, that would not be spec compliant, that's essentially what spec compliant means, that we pass the signature test (which we hav

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread David Blevins
On Sep 14, 2007, at 10:34 AM, Filip Hanik - Dev Lists wrote: - adding methods or altering the signature of the javax. APIs is clearly illegal yes, that would not be spec compliant, that's essentially what spec compliant means, that we pass the signature test (which we haven't done for a co

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread Filip Hanik - Dev Lists
Remy Maucherat wrote: Filip Hanik - Dev Lists wrote: Yoav Shapira wrote: Hey, On 9/13/07, Andrew J Snodgrass <[EMAIL PROTECTED]> wrote: The attached patch adds support for the direct use of enums in the attributes of tags. Cool idea. Is it in Bugzilla? I agree, think it is very

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread Remy Maucherat
Filip Hanik - Dev Lists wrote: Yoav Shapira wrote: Hey, On 9/13/07, Andrew J Snodgrass <[EMAIL PROTECTED]> wrote: The attached patch adds support for the direct use of enums in the attributes of tags. Cool idea. Is it in Bugzilla? I agree, think it is very useful. Would you mind

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread Filip Hanik - Dev Lists
Yoav Shapira wrote: Hey, On 9/13/07, Andrew J Snodgrass <[EMAIL PROTECTED]> wrote: The attached patch adds support for the direct use of enums in the attributes of tags. Cool idea. Is it in Bugzilla? I agree, think it is very useful. Would you mind opening a bugzilla, http://issu

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread Remy Maucherat
Yoav Shapira wrote: Hey, On 9/13/07, Andrew J Snodgrass <[EMAIL PROTECTED]> wrote: The attached patch adds support for the direct use of enums in the attributes of tags. Cool idea. Is it in Bugzilla? I agree it seems like a good idea, but if it is not in the specification, then there's no

Re: [PATCH] jasper - enum support for tag libs

2007-09-14 Thread Yoav Shapira
Hey, On 9/13/07, Andrew J Snodgrass <[EMAIL PROTECTED]> wrote: > The attached patch adds support for the direct use of enums in the > attributes of tags. Cool idea. Is it in Bugzilla? Yoav - To unsubscribe, e-mail: [EMAIL PROT

[PATCH] jasper - enum support for tag libs

2007-09-13 Thread Andrew J Snodgrass
The attached patch adds support for the direct use of enums in the attributes of tags. Assume there is the enum: public enum LoginType { account, manager, reseller; } and a setter for a tag called 'page': public void setLogin_required_type( LoginType login_required_type ) { ... then the js