isNested returns false for aspects

2017-09-14 Thread Showalter, Jim
We have a class com/intuit/foo/Bar$AjcClosure1 that returns false from isNested. Jim Showalter Programmer Intuit, 2003H-265Z Garcia Avenue Mountain View, CA 94043 (408) 353-4954 (408) 204-1661

RE: [BCEL] Re: How can I recover .class references separate from other references to classes using BCEL?

2017-09-10 Thread Showalter, Jim
using BCEL? quick guess: check if the previous instruction is ldc. HTH, Stephan On 10.09.2017 21:50, Showalter, Jim wrote: > The use case is, suppose you want to recover the source from a .class file. > > In the original source, it said: > > public class SomeExperiment { > pu

How can I recover .class references separate from other references to classes using BCEL?

2017-09-10 Thread Showalter, Jim
The use case is, suppose you want to recover the source from a .class file. In the original source, it said: public class SomeExperiment { public static void main(String[] args) { System.out.println(SomeOtherClass.class); <<< WANT TO RECOVER THE ".class" FROM HERE } } In the

Missing type information (not seen in visitor)

2017-09-25 Thread Showalter, Jim
We have two classes like this: package com.intuit.foo; public class Foo { } public class FooHolder { private List foos = new ArrayList<>(); } After visiting both classes and dumping out the info, I see this: com/intuit/foo/Foo: class, lines 0 to ~2, deletable, public

RE: Missing type information (not seen in visitor)

2017-09-25 Thread Showalter, Jim
Gary On Sep 25, 2017 17:05, "Showalter, Jim" <jim_showal...@intuit.com> wrote: > We have two classes like this: > > package com.intuit.foo; > > public class Foo { > } > > public class FooHolder { >private List foos = new ArrayList<&g