001package jmri.jmrit.logixng; 002 003import jmri.NamedBean; 004 005/** 006 * Represent a named table. 007 * A named table is a table that is a NamedBean. 008 * 009 * @author Daniel Bergqvist Copyright (C) 2019 010 */ 011public interface NamedTable extends Table, NamedBean { 012}