[Doxygen-users] (no subject)
Brought to you by:
dimitri
|
From: Steve K. <sk...@ro...> - 2008-01-24 13:58:56
|
I am not seeing constructors for newly-created objects show up in the call
or caller graphs for Java code.
For example,
public class A
{
public A()
{
}
pubic void init()
{
B b = new B();
b.doSomething();
}
}
public class B()
{
public B()
{
}
public void doSomething()
{
}
}
The caller graph for A.init() shows B.doSomething() but not the constructor
for B(). The caller graph for the B() constructor shows no callers, while
the caller graph for B.doSomething() correctly shows A.init().
Is this a known limitation?
Regards,
Steve
|