001package jmri.jmrix.openlcb.swing; 002 003import jmri.util.JmriJFrame; 004 005import org.openlcb.NodeID; 006 007/** 008 * JmriJFrame subclass which stores additional information 009 * for locating this frame as carrying OpenLCB node information. 010 * 011 * @author Bob Jacobsen Copyright (C) 2024 012 */ 013 014public class NodeSpecificFrame extends JmriJFrame { 015 016 public NodeSpecificFrame(NodeID nodeID) { 017 super(); 018 this.nodeID = nodeID; 019 } 020 021 final NodeID nodeID; 022 023 public NodeID getNodeID() { 024 return nodeID; 025 } 026 027}