![JAR search and dependency download from the Maven repository](/logo.png)
com.fredericboisguerin.excel.common.InformationColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-reader-writer Show documentation
Show all versions of excel-reader-writer Show documentation
A library to read/write excel files with simple descriptions of the model
The newest version!
package com.fredericboisguerin.excel.common;
/**
* Created by fboisguerin on 03/08/2015.
*/
public class InformationColumn {
private Information information;
private String colIndex;
public InformationColumn() {
}
public InformationColumn(String colIndex) {
this.colIndex = colIndex;
}
public Information getInformation() {
return information;
}
public void setInformation(Information information) {
this.information = information;
}
public String getColIndex() {
return colIndex;
}
public void setColIndex(String colIndex) {
this.colIndex = colIndex;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy