001package jmri.jmrix.zimo.swing; 002 003import jmri.jmrix.zimo.Mx1SystemConnectionMemo; 004 005/** 006 * JPanel interface to handle providing system connection information to a 007 * panel. 008 * 009 * @author Bob Jacobsen Copyright 2010 Copied from nce.swing 010 * @author Ken Cameron 2014 011 * @author Kevin Dickerson 2014 012 */ 013public interface Mx1PanelInterface { 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 * 021 * @param memo the memo to initialize components with 022 */ 023 public void initComponents(Mx1SystemConnectionMemo memo); 024 025}