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

com.github.ejahns.model.TableRow Maven / Gradle / Ivy

The newest version!
package com.github.ejahns.model;

import java.util.List;

import com.github.ejahns.model.interfaces.hastoken.HasLineNumber;

public class TableRow implements HasLineNumber {

	private int line;
	private List cells;

	@Override
	public int getLine() {
		return line;
	}

	@Override
	public void setLine(int line) {
		this.line = line;
	}

	public List getCells() {
		return cells;
	}

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

	@Override
	public String toString() {
		return cells.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy