
|
If you were logged in you would be able to see more operations.
|
|
|
XStream
Created: 06/Jul/07 08:17 AM
Updated: 25/Feb/08 05:01 PM
|
|
| Component/s: |
Annotations
|
| Affects Version/s: |
1.2.2
|
| Fix Version/s: |
1.3
|
|
| JDK version and platform: |
JDK 1.6 for Windows
|
|
Assume I have the following object:
public class Untyped {
@XStreamImplicit
private List list = new ArrayList();
}
Calling
Annotations.configureAliases(xs, Untyped.class);
leads to a NullPointerException because XStream cannot find a generic type of the list.
|
|
Description
|
Assume I have the following object:
public class Untyped {
@XStreamImplicit
private List list = new ArrayList();
}
Calling
Annotations.configureAliases(xs, Untyped.class);
leads to a NullPointerException because XStream cannot find a generic type of the list. |
Show » |
|