Created
January 16, 2010 23:41
-
-
Save plagelao/279089 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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