Re: Newbie : Java Interop question

2010-10-18 Thread oak
Thanks just what needed to know On Oct 15, 11:13 pm, Randy Hudson wrote: > Nested classes require the syntax AClass$NestedClass -- this being the > "real name" of the class in the JVM. > Static members of classes are referenced as AClass/member -- > essentially treating the class as a namespace o

Re: Newbie : Java Interop question

2010-10-18 Thread oak
P = Property. Guess it could have been lower case p. On Oct 15, 11:19 pm, Michael Ossareh wrote: > On Fri, Oct 15, 2010 at 09:32, oak wrote: > > Hi All, > > > This is how i see the package in package explorer. > > IEssbase.class > >  (I) IEssbase > >      (C, s f) Home > >             (M, s) cre

Re: Newbie : Java Interop question

2010-10-15 Thread Michael Ossareh
On Fri, Oct 15, 2010 at 09:32, oak wrote: > Hi All, > > This is how i see the package in package explorer. > IEssbase.class > (I) IEssbase > (C, s f) Home > (M, s) create(String) IEssbase > (M, c) Home() > (P, s f) JAPI_VERSION > > Out of interest what is this

Re: Newbie : Java Interop question

2010-10-15 Thread Randy Hudson
Nested classes require the syntax AClass$NestedClass -- this being the "real name" of the class in the JVM. Static members of classes are referenced as AClass/member -- essentially treating the class as a namespace of its static members. So this should do it: (IEssbase$Home/create IEssbase/JAPI_VE

Re: Newbie : Java Interop question

2010-10-15 Thread oak
Sorry i've tried that as well. The problem is that Home is not a method on IEssbase. That's the message i get back. On Oct 15, 1:08 pm, ".Bill Smith" wrote: > Try using  IEssbase/JAPI_VERSION instead (replace dot with slash). > > On Oct 15, 11:32 am, oak wrote: > > > > > Hi All, > > > This is ho

Re: Newbie : Java Interop question

2010-10-15 Thread .Bill Smith
Try using IEssbase/JAPI_VERSION instead (replace dot with slash). On Oct 15, 11:32 am, oak wrote: > Hi All, > > This is how i see the package in package explorer. > IEssbase.class >   (I) IEssbase >       (C, s f) Home >              (M, s) create(String) IEssbase >              (M, c) Home() >

Newbie : Java Interop question

2010-10-15 Thread oak
Hi All, This is how i see the package in package explorer. IEssbase.class (I) IEssbase (C, s f) Home (M, s) create(String) IEssbase (M, c) Home() (P, s f) JAPI_VERSION I can import like this in Clojure =>(import `(com.essbase.api.session IEssbase))` I can