String strError = "plg == null";
throw new Exception(strError);
}
String strPathAbsBlackBox = GfrPluginManagerUtilGsi.s_getInstance().getPathAbsoluteCache(plg);
GfrDlgAbs dlg;
if (plg instanceof IGfrHandlerLicensingPlugin)
dlg = new GfrDlgCmdCancelAboutPlgLicYes(plg, strPathAbsBlackBox);
else
dlg = new GfrDlgCmdCancelAboutPlgLicNo(plg, strPathAbsBlackBox);
if (! dlg.init())
{
String strError = "! dlg.init()";
throw new Exception(strError);
}
dlg.setVisible(true);
}
catch(Exception exc)
{
exc.printStackTrace();