This question already has an answer here:
- Java - Generics with lists 5 answers
So how can I do the following in Java?
List<String> strings = new ArrayList<String>();
JAXBElement<List<String>> jax = new JAXBElement<List<String>>(new QName("strings"), List<String>.class, strings);
The issue specifically occurs at List.class and the error returned is:
Multiple markers at this line
- List cannot be resolved to a variable
- String cannot be resolved to a variable
- Syntax error on token ">", void expected after this token