Tagged Questions
0
votes
1answer
320 views
How to invoke a method with a superclass
I'm trying to invoke a method that takes a super class as a parameter with subclasses in the instance.
public String methodtobeinvoked(Collection<String> collection);
Now if invoke via
...