![JAR search and dependency download from the Maven repository](/logo.png)
com.creativewidgetworks.goldparser.engine.GroupList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of goldengine Show documentation
Show all versions of goldengine Show documentation
Java implementation of Devin Cook's GOLD Parser engine
package com.creativewidgetworks.goldparser.engine;
import java.util.ArrayList;
/**
* GroupList
*
* Manages a list of Group objects.
*
* Dependencies:
* @Group
*
* @author Devin Cook (http://www.DevinCook.com/GOLDParser)
* @author Ralph Iden (http://www.creativewidgetworks.com), port to Java
* @version 5.0.0
*/
public class GroupList extends ArrayList {
public GroupList() {
// default constructor
super();
}
/**
* Constructor that establishes the size of the list and creates placeholder
* objects so the list can be accessed in a "random" fashion when setting
* items.
* @param size
*/
public GroupList(int size) {
super(size);
for (int i = 0; i < size; i++) {
add(null);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy