It's a lexical variable, so you can't see it from outside the scope
it's declared in. You'd have to edit the Inline/Java.pm file (or use
something like PadWalker) to access it.
Maybe you could try
print Dumper $YourPackage::INLINE;
and see what that shows. Not sure whether it's relevant or not, it's
some specific entry from @INLINES.
-Ken
Ah, that's what happens when you don't know what your doing. I
understand now. I'll try:
print Dumper $YourPackage::INLINE;
And see what I get, otherwise I'll stick in my own method into Java.pm
until Patrick puts in a method in the dist.
Thanks
Jay