public CFSecuritySwingHostNodeFinderJInternalFrame(ICFSecuritySwingSchema argSchema) {
   super();
   final String S_ProcName = "construct-schema-focus";
   if (argSchema == null) {
     throw CFLib.getDefaultExceptionFactory()
         .newNullArgumentException(getClass(), S_ProcName, 1, "argSchema");
   }
   setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
   swingSchema = argSchema;
   swingFinderJPanel = argSchema.getHostNodeFactory().newFinderJPanel();
   setContentPane(swingFinderJPanel);
   Dimension dim = new Dimension(1024, 480);
   setSize(dim);
   dim = new Dimension(320, 240);
   setMinimumSize(dim);
   setTitle("Find Host Node");
   setJMenuBar(getFinderMenuBar());
   setIconifiable(true);
   setMaximizable(true);
   setResizable(true);
   setClosable(false);
   adjustFinderMenuBar();
 }