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

com.factset.protobuf.stach.extensions.models.Row Maven / Gradle / Ivy

package com.factset.protobuf.stach.extensions.models;

import java.util.ArrayList;
import java.util.List;

public class Row {
    private boolean isHeader;
    private List Cells = new ArrayList();

    public boolean isHeader() {
        return isHeader;
    }

    public void setHeader(boolean isHeader) {
        this.isHeader = isHeader;
    }

    public List getCells() {
        return Cells;
    }

    public void setCells(List cells) {
        this.Cells = cells;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy