Possible Java implementation
import OpenList;

class ClosedList
{
private OpenList head;

OpenList() { }

. . . other stuff . . .

}