001package jmri.jmrix.tams.swing; 002 003import jmri.jmrix.tams.TamsSystemConnectionMemo; 004 005/** 006 * JPanel interface to handle providing system connection information to a 007 * panel. 008 * 009 * Based on work by Bob Jacobsen 010 * 011 * @author Kevin Dickerson Copyright (C) 2012 012 */ 013public interface TamsPanelInterface { 014 015 /** 016 * 2nd stage of initialization, invoked after the constructor is complete. 017 * <p> 018 * This needs to be connected to the initContext() method in implementing 019 * classes. 020 * @param memo system Connection. 021 */ 022 public void initComponents(TamsSystemConnectionMemo memo); 023 024}