com.objogate.wl.swing.driver.table.RenderedCell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of windowlicker-swing Show documentation
Show all versions of windowlicker-swing Show documentation
This is the Windowlicker Swing library.
The newest version!
/**
* Contains the contents of a cell within a table and its coordinates
*/
package com.objogate.wl.swing.driver.table;
import java.awt.Component;
public class RenderedCell {
public final Cell cell;
public final Component rendered;
public RenderedCell(Cell cell, Component rendered) {
this.cell = cell;
this.rendered = rendered;
}
}