uk.ac.starlink.table.TableSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stil Show documentation
Show all versions of stil Show documentation
Starlink Tables Infrastructure Library
package uk.ac.starlink.table;
/**
* General purpose interface for objects which can supply a table.
*
* @author Mark Taylor
* @since 24 May 2007
*/
public interface TableSource {
/**
* Returns a table.
*
* @return table
*/
StarTable getStarTable();
}