All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.bliki.wiki.template.extension.AttributeList Maven / Gradle / Ivy

The newest version!
package info.bliki.wiki.template.extension;

import java.util.ArrayList;

/**
 * Internal alias for an ArrayList.
 */
 final public class AttributeList extends ArrayList {
    /**
     * Auto-generated serial version UID.
     */
    private static final long serialVersionUID = 5842220402564899140L;

    public AttributeList(int size) {
        super(size);
    }

    public AttributeList() {
        super();
    }
}