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

org.swiftboot.sheet.meta.BaseCellInfo Maven / Gradle / Ivy

There is a newer version: 2.4.7
Show newest version
package org.swiftboot.sheet.meta;

/**
 * @author swiftech
 */
public abstract class BaseCellInfo implements CellInfo {

    /**
     * data of one cell.
     */
    private Object value;

    public BaseCellInfo() {
    }

    public BaseCellInfo(Object value) {
        this.value = value;
    }

    public Object getValue() {
        return value;
    }

    public void setValue(Object value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy