]
George Gastaldi commented on ROASTER-100:
-----------------------------------------
[~kaijmueller] I don't have much to add here, but I believe it would involve dealing
with the JDT API to achieve that, perhaps converting to String is not the right way to go,
needs to be checked.
I think the first step is to understand how that is done in JDT and adapt Roaster to make
the same behavior but easier.
Can't add array of annotations as annotation value
--------------------------------------------------
Key: ROASTER-100
URL:
https://issues.jboss.org/browse/ROASTER-100
Project: Roaster
Issue Type: Feature Request
Components: API
Affects Versions: 2.18.4.Final
Reporter: Simone D'Avico
Priority: Major
Fix For: 2.x Future
It is not currently possible to generate an annotation such as
{code:java}
@MatrixMix (
mix = { @Row({ 50, 50, 50, 50 ,50 }),
@Row({ 50, 50, 50, 50 ,50 }),
@Row({ 50, 50, 50, 50 ,50 }) }
)
{code}
The only workaround is to treat the array as a String and set it as a literal, as
discussed [
here|https://developer.jboss.org/message/953302]. It would be nice to add this
capability to the API.