001package edu.wpi.first.wpilibj.tables;
002
003/**
004 * A simple interface to provide tables
005 * 
006 * @author Mitchell
007 *
008 */
009public interface ITableProvider {
010        /**
011         * Get a table by name
012         * @param name the name of the table
013         * @return a Table with the given name
014         */
015        public ITable getTable(String name);
016}