org.jxls.common.GroupData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-jdk1.6 Show documentation
Show all versions of jxls-jdk1.6 Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.common;
import java.util.Collection;
/**
* Used in collection grouping to hold group data
* @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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy