Hi all,
Code generation (EA10) can generate one file per class, or one file per package (all containing classes into one file)
Now my question is: Can I from within the CodeGen template determine which approach is selected by the user?
The problem I'm trying to solve is related to imports section. The compiler won't accept not-used or repetetive identical import sections, so I define imports in a tagged value per class and per package. Thus I need to know whether to read the packageTag or classTag depending on the user's approach.
Or is there any other better way of achieving the same thing?
// Rolf