static <A> void addInFront(L<A> c, A a) {
  addFirst(c, a);
}

svoid addInFront(Container c, Component... l) {
  containerAddFirst(c, l);
}