Searched defs:appendList (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/odersky/
H A DList.java144 public List<A> appendList(List<A> x) { method in class:List
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DList.java224 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 DListBuffer.java140 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 39 milliseconds