net.sf.jxls.util.GroupData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-core Show documentation
Show all versions of jxls-core Show documentation
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.util;
import java.util.Collection;
/**
* @author Leonid Vysochyn
*/
public class GroupData {
Object item;
Collection items;
public GroupData(Object groupItem, Collection groupItems) {
this.item = groupItem;
this.items = groupItems;
}
public Object getItem() {
return item;
}
public void setItem(Object item) {
this.item = item;
}
public Collection getItems() {
return items;
}
public void setItems(Collection items) {
this.items = items;
}
}