001package jmri.jmrix.nce.swing; 002 003import jmri.jmrix.nce.NceSystemConnectionMemo; 004 005/** 006 * NcePanel interface to handle providing system connection information to a 007 * panel. 008 * 009 * @author Bob Jacobsen Copyright 2010 010 * @since 2.11.1 011 * @author kcameron 2010 012 */ 013public interface NcePanelInterface { 014 015 /** 016 * 2nd stage of initialization, invoked after the constuctor is complete. 017 * <p> 018 * This needs to be connected to the initContext() method in implementing 019 * classes. 020 * 021 * @param memo the system connection memo for this connection 022 */ 023 void initComponents(NceSystemConnectionMemo memo); 024 025}