RE: Java enum support..

2007-08-21 Thread Robertson, Jason V
/lib/Inline/Java/Object.pm line 107 org::apache::log4j::Logger->getRootLogger()->setLevel(org::apache::log4j::Level->{OFF}); # Above gives: #log4j:ERROR You have tried to set a null level to root. -Original Message- From: Patrick LeBoutillier [mailto:[EMAIL PROTECTED] Sent: Tuesday, A

Re: Java enum support..

2007-08-21 Thread Patrick LeBoutillier
-- > From: Patrick LeBoutillier [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 21, 2007 7:15 AM > To: Robertson, Jason V > Cc: [email protected] > Subject: Re: Java enum support.. > > Hi, > > On 8/20/07, Robertson, Jason V <[EMAIL PROTECTED]> wrote: > > Is t

Re: Java enum support..

2007-08-21 Thread Patrick LeBoutillier
Hi, On 8/20/07, Robertson, Jason V <[EMAIL PROTECTED]> wrote: > Is there a way to access Java enums from Inline::Java? I tried the > obvious, e.g. > > > > org::apache::log4j::Level->{OFF} > > and > > org::apache::log4j::Level->OFF Try this: org::apache::log4j::Level::OFF (see http://search.c

Java enum support..

2007-08-21 Thread Robertson, Jason V
Is there a way to access Java enums from Inline::Java? I tried the obvious, e.g. org::apache::log4j::Level->{OFF} and org::apache::log4j::Level->OFF Neither seems to work... Thanks, Jason