Hi again,
Consider following situation. There is a class A that uses a constant
from another class B like: B.MY_CONSTANT. The type of MY_CONSTANT is
int and the value is 4. I include B.MY_CONSTANT in A. The compilation
of A.java ends up in a file A.class. After decompiling A.class I
realize that the expression B.MY_CONSTANT was substituted by 4. Thus,
I don't have any dependency between A and B within the class files.
But I want to model latter.
Does anyone know whether a solution exists for that kind of problem or
not?
Cheers,
Yusuf