문제

is there any posibility to convert inner class to a regular class while doing transformation?

Class should be in the same package as the wrapper class.

Thx

도움이 되었습니까?

해결책

Found the solution. Replace following code:

    Class
{
...
%list="InnerClass" @separator="\n" @indent="  "%
}

To:

    Class
{
...
}
%list="InnerClass" @separator="\n" @indent="  "% 

This do the trick

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top