Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7d19bdfb1b8befdddfb8972fcee4069057ce1b45 (plain) (blame)
1
2
3
4
package java.util;

public interface List<E> extends Collection<E> {
}

Back to the top