Searched defs:appendList (Results 1 - 3 of 3) sorted by relevance
/openjdk7/langtools/test/tools/javac/generics/odersky/ | ||
H A D | List.java | 144 public List<A> appendList(List<A> x) { method in class:List |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/ | ||
H A D | List.java | 224 public List<A> appendList(List<A> x) { method in class:List 232 public List<A> appendList(ListBuffer<A> x) { method in class:List 233 return appendList(x.toList()); |
H A D | ListBuffer.java | 140 public ListBuffer<A> appendList(List<A> xs) { method in class:ListBuffer 150 public ListBuffer<A> appendList(ListBuffer<A> xs) { method in class:ListBuffer 151 return appendList(xs.toList()); |
Completed in 23 milliseconds