javaparser UnsolvedSymbolException - Class used on the class being parsed, uses another class that is unresolved
问题 I'm not sure if I described the issue well in the title, but here is the background: I want to parse a java source code, say TestClassOne.java. TestClassOne uses another class "TestClassTwo" declared as instance variable. Now, TestClassTwo has a class TestClassThree declared as instance variable. So now, the problem arises when my target class-TestClassOne, gets a reference of TestClassThree via TestClassTwo, thus method test() below: public class TestClassOne { private TestClassTwo testTwo =