Description
Following Action is not properly picked up because in this specific type hierarchy sampleAction appears twice with differing method signatures (most likely because a bridge method is used by the JVM here).
public abstract class Example<T> { @Action public T sampleAction(@Parameter @Nullable final T value) { return value; } } public class StringExample extends Example<String> { @Action @Override public String sampleAction(@Parameter @Nullable final String value) { return value; } }
Attachments
Issue Links
- causes
-
CAUSEWAY-3571 Support for generic type bounded methods that are not overwritten using explicit types.
- Closed
- links to