com.objogate.wl.swing.driver.table.Location 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!
/**
* Something that can be converted into a Cell in a Table
*/
package com.objogate.wl.swing.driver.table;
import javax.swing.JTable;
public interface Location {
Cell asCellIn(JTable table);
}