//****************************************************************************** // AwtMulticastRelayClientFrame.java: // //****************************************************************************** package mil.navy.nps.bridge; import java.awt.*; //============================================================================== // STANDALONE APPLICATION SUPPORT // This frame class acts as a top-level window in which the applet appears // when it's run as a standalone application. //============================================================================== class AwtMulticastRelayClientFrame extends Frame { // AwtMulticastRelayClientFrame constructor //-------------------------------------------------------------------------- public AwtMulticastRelayClientFrame(String str) { // TODO: Add additional construction code here super (str); } }