|
|
Browse by Tags
All Tags » bug » generics (RSS)
-
I have a class with a generic attribute
public class SimplePerson<V extends Comparable> implements Serializable, SimplePersonIf {
private static final long serialVersionUID = 1L;
private String name;
private List<SimplePersonIf> friends;
private V value;
When I store an object, the attribute ''value'' is not ...
|
|
|