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

com.fredericboisguerin.excel.common.InformationColumn Maven / Gradle / Ivy

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