You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
currently if you have a java class and if you want to parse it(or obtain it) recursively.we need to do.
for(org.jboss.forge.roaster.model.JavaType jtypes:javaClass.getNestedTypes()){
org.jboss.forge.roaster.model.source.JavaClassSource assumetypeiscls=(org.jboss.forge.roaster.model.source.JavaClassSource)jtypes;
.........
is there any way to just not cast it into a classsource?or maybe cast to a more genric type? that may include interface.
The text was updated successfully, but these errors were encountered:
currently if you have a java class and if you want to parse it(or obtain it) recursively.we need to do.
The text was updated successfully, but these errors were encountered: