Title: Message Title
Robert Scholte commented on an issue
QDox / Bug QDOX-252
Generic types fail to resolve on nested interfaces
See these example classes:
{code}
public class Dto {
}

public interface Validator<T extends Object> {
boolean validate(T obj);
}

public interface Getter<T extends Object> {
T get();
}

public interface Setter<T extends Object> extends Validator<T> {
void set(T obj);
}

public interface HelloService extends Getter<Dto>, Setter<Dto> { ...
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to