0

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

jaksky
  • 3,305
  • 4
  • 35
  • 68

1 Answers1

0

Found the solution. Replace following code:

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

To:

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

This do the trick

jaksky
  • 3,305
  • 4
  • 35
  • 68