kilim.analysis.BBList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kilim Show documentation
Show all versions of kilim Show documentation
Coroutines, continuations, fibers, actors and message passing for the JVM
/* Copyright (c) 2006, Sriram Srinivasan
*
* You may distribute this software under the terms of the license
* specified in the file "License"
*/
package kilim.analysis;
import java.util.ArrayList;
/**
* Just a convenient alias for ArrayList
*/
public class BBList extends ArrayList
{
private static final long serialVersionUID = -1768924113292685739L;
public BBList() {}
public BBList(int size) {
super(size);
}
}