Reverse code and show uses dependency

Hi Steve,

Currently, we supports those relationships including, Generalization, Realization, Assoication and Containment.

We had planned to support other kinds of relationship in reverse engineering.

Sorry for the inconvenience.

Mercus

I’m trying to use VP to reverse Java code and would like the diagram to show the uses relationships between objects. I would like to see the “uses” dependency between User and Usee classes below:

public class User {
public static void main(String[] args) {
User u = new User();
u.useIt();
}

public void useIt() {
	Usee u = new Usee();
	u.doNothing();
}

}

public class Usee {
public void doNothing() {
return;
}
}

Is there some way to get VP to show these dependencies when reverse engineering code?

1 Like