I'm just starting out with Netbeans and I ran into a problem trying to write a new class.
public class DeliveryList<T> extends ArrayList<T>
{
public DeliveryList<T> // <identifier> expected
{
}
}
Netbeans throws this error at me and I'm not quite sure what to do.