Standard Edition: Reverse engineering not creating usage?

Hi,

I’m rather new to UML and VP. Instant reverse is what I’m after. If I do an instant reverse of the following code, I would expect that the usage of the class DataMan would be reflected in the diagram by showing a usage line. But there is no relationship shown between both of them at all. Why is this?

Thanks in advance

Ray

public class Main
{

public static void main(String[] args)
{
    DataMan dm = new DataMan();
}

}

class DataMan
{

public DataMan()
{
    System.out.println("Hello!");
}

}

Hi Brainray,

Thanks for your post. We only analyze the class structure (i.e. class, field, method) but not the implementation during reverse. Please feel free to contact me if there is any further inquiry.

Best regards,
Lilian Wong