Skip to content

Instantly share code, notes, and snippets.

@plagelao
Created January 16, 2010 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plagelao/279089 to your computer and use it in GitHub Desktop.
Save plagelao/279089 to your computer and use it in GitHub Desktop.
package com.blogspot.plagelao.contracttest.implementaciones;
import com.blogspot.plagelao.contracttest.ContratoParaColecciones;
import java.util.ArrayList;
import java.util.Collection;
public class ArrayListTest extends ContratoParaColecciones {
public ArrayListTest() {
}
@Override
public Collection nuevaColeccion() {
return new ArrayList();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment